/* CNGateway — Global Styles */
:root {
  --navy: #0A2540;
  --navy-dark: #061a30;
  --navy-soft: #1a3a5f;
  --crimson: #C8102E;
  --crimson-soft: #e63950;
  --gold: #C9A961;
  --bg: #FFFFFF;
  --bg-alt: #F7F9FC;
  --text: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --border: #E2E8F0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 3px rgba(10, 37, 64, 0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-logo .logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
}
.nav-cta {
  padding: 0.625rem 1.25rem;
  background: var(--navy);
  color: #fff !important;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--navy-dark); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--navy);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.18);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--bg-alt);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: gap 0.2s ease;
}
.btn-arrow:hover { gap: 0.625rem; color: var(--crimson); }

/* ===== Sections ===== */
section {
  padding: 6rem 0;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: 4rem;
  max-width: 720px;
}
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Hero ===== */
.hero {
  padding-top: 9rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 37, 64, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 37, 64, 0.06);
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  color: var(--crimson);
  font-style: italic;
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
}
.hero-meta-item .label {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}
.hero-visual {
  position: relative;
  height: auto;
}
.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 20px 50px -20px rgba(10, 37, 64, 0.18);
}
.hero-card.card-1 {
  top: 0;
  right: 0;
  width: 280px;
}
.hero-card.card-2 {
  top: 160px;
  left: 0;
  width: 260px;
}
.hero-card.card-3 {
  bottom: 0;
  right: 40px;
  width: 290px;
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.hero-card-icon {
  width: 36px; height: 36px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--navy);
}
.hero-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-card-body {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.hero-card .stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}
.hero-card .stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 600;
}
.hero-card .stat-trend {
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
}

/* ===== Logos strip ===== */
.logos {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.logos-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  text-align: center;
  transition: all 0.2s ease;
}
.logo-item svg {
  color: var(--crimson);
  opacity: 0.8;
}
.logo-item:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(10, 37, 64, 0.15);
}

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--navy);
  box-shadow: 0 12px 32px -16px rgba(10, 37, 64, 0.15);
  transform: translateY(-2px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(10, 37, 64, 0.06);
  display: grid; place-items: center;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-card ul {
  list-style: none;
  margin-bottom: 1.25rem;
}
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.375rem 0;
}
.service-card ul li svg {
  flex-shrink: 0;
  color: var(--crimson);
  margin-top: 3px;
}

/* ===== Feature Grid (Why us) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature {
  text-align: left;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.feature h4 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0;
}
.feature p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Process / Approach ===== */
.process-section { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.process-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.process-section h2 { color: #fff; }
.process-section .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.process-section .section-eyebrow { color: var(--crimson-soft); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.process-step {
  position: relative;
}
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--crimson-soft);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.process-step h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 5rem 0;
}
.cta-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: var(--crimson);
}
.cta-card h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-card p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h5 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ===== Page Header (inner pages) ===== */
.page-header {
  padding: 9rem 0 5rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 50%; right: -100px;
  width: 400px; height: 400px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-light); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb svg { width: 14px; height: 14px; }
.page-header h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.page-header .lead {
  font-size: 1.1875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
}

/* ===== About Page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
}
.about-image-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,37,64,0.85) 0%, rgba(10,37,64,0.5) 100%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.04) 20px 21px);
}
.about-image-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: #fff;
}
.about-image-content .quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1rem;
}
.about-image-content .author {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}
.about-text h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
.about-text p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.value-item {
  padding: 1.5rem;
  border-left: 3px solid var(--crimson);
  background: var(--bg-alt);
  border-radius: 0 8px 8px 0;
}
.value-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}
.value-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Services Page ===== */
.service-detail {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail-left .num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--crimson);
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.service-detail-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-detail-left .lede {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-detail-right {
  display: grid;
  gap: 1rem;
}
.sub-service {
  padding: 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.25s ease;
}
.sub-service:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 24px -12px rgba(10, 37, 64, 0.12);
}
.sub-service h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.sub-service h4 svg { color: var(--crimson); flex-shrink: 0; }
.sub-service ul { list-style: none; }
.sub-service ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 0.3125rem 0;
  line-height: 1.6;
}
.sub-service ul li strong { color: var(--navy); font-weight: 600; }
.sub-service ul li::before {
  content: '';
  flex-shrink: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--crimson);
  margin-top: 11px;
}
.featured-engagement {
  margin-top: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--crimson);
}
.featured-engagement .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  margin-bottom: 0.5rem;
}
.featured-engagement p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-channel {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-channel:last-of-type { border-bottom: none; }
.contact-channel-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--bg-alt);
  display: grid; place-items: center;
  color: var(--navy);
}
.contact-channel-content .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-channel-content .value {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}
.contact-channel-content .value a:hover { color: var(--crimson); }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px -8px rgba(10, 37, 64, 0.06);
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form-wrap .form-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group label .required { color: var(--crimson); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; cursor: pointer; }
.form-consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.2);
}
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.form-success.show { display: flex; gap: 0.625rem; align-items: center; }

/* Field validation errors */
.field-error {
  border-color: var(--crimson) !important;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1) !important;
}
.field-error-msg {
  color: var(--crimson);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  line-height: 1.4;
}
.form-consent .field-error-msg {
  margin-top: 0.15rem;
}

/* ===== Map / Location card ===== */
.location-card {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.location-card h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.location-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================== */
/* ============ IMAGES / VISUAL ENHANCEMENTS ============ */
/* ===================================================== */

/* Hero image (replaces floating cards on the right) */
.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -25px rgba(10, 37, 64, 0.4);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 0%, transparent 55%, rgba(10, 37, 64, 0.55) 100%);
  pointer-events: none;
}
.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 30px -10px rgba(10, 37, 64, 0.3);
}
.hero-image-badge-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
}
.hero-image-badge-text .title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.hero-image-badge-text .sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.hero-image-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.5rem 0.875rem;
  background: var(--crimson);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px -4px rgba(200, 16, 46, 0.5);
}
.hero-image-tag .pin {
  display: inline-block;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Service card variant with image header */
.service-card.has-image { padding: 0; overflow: hidden; }
.service-card.has-image .service-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-card.has-image .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card.has-image:hover .service-image img { transform: scale(1.05); }
.service-card.has-image .service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.45) 100%);
}
.service-card.has-image .service-image-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card.has-image .service-body { padding: 1.75rem 2rem 2rem; }
.service-card.has-image .service-icon { margin-top: -42px; position: relative; z-index: 3; background: #fff; box-shadow: 0 6px 16px -6px rgba(10, 37, 64, 0.2); }

/* Image hero strip for page header (inner pages) */
.page-header.with-image {
  padding-top: 9rem;
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
}
.page-header-image {
  margin-top: 3rem;
  aspect-ratio: 21 / 9;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 -20px 40px -20px rgba(10, 37, 64, 0.15);
}
.page-header-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.page-header-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.1) 0%, transparent 40%, rgba(255,255,255,0.4) 100%);
}

/* About page split image */
.about-image-photo {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
}
.about-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.1) 0%, rgba(10,37,64,0.65) 100%);
}
.about-image-photo .about-image-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: #fff;
  z-index: 2;
}
.about-image-stats {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.about-image-stats .dot { width: 8px; height: 8px; background: var(--crimson); border-radius: 50%; align-self: center; }

/* Service detail thumbnail (Services page sub-services) */
.service-detail-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-top: 1.5rem;
  box-shadow: 0 12px 30px -16px rgba(10, 37, 64, 0.25);
}
.service-detail-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.service-detail-image:hover img { transform: scale(1.04); }
.service-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 37, 64, 0.55) 100%);
}
.service-detail-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-style: italic;
  z-index: 2;
}

/* Contact page office image */
.contact-image {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 30px -16px rgba(10, 37, 64, 0.2);
}
.contact-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.contact-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.7) 100%);
}
.contact-image-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
  z-index: 2;
}
.contact-image-caption .city {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.contact-image-caption .country {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

/* Image performance & accessibility */
img {
  -webkit-user-drag: none;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  position: relative;
  margin-left: 0.75rem;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.lang-toggle:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.lang-toggle svg {
  display: block;
  flex-shrink: 0;
}
.lang-btn-label {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 200;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 32px -8px rgba(10, 37, 64, 0.18);
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-dropdown button:hover {
  background: var(--bg-alt);
  color: var(--navy);
}
.lang-dropdown button.active {
  color: var(--navy);
  background: var(--bg-alt);
  font-weight: 600;
}

/* ===== RTL Support ===== */
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .lang-dropdown button { text-align: right; }
[dir="rtl"] .value-item { border-left: none; border-right: 3px solid var(--crimson); border-radius: 8px 0 0 8px; }
[dir="rtl"] .service-card::before { transform-origin: right; }
[dir="rtl"] .btn-arrow:hover { gap: 0.625rem; }
[dir="rtl"] .hero-image-tag .pin { margin-right: 0; margin-left: 0.5rem; }
[dir="rtl"] .featured-engagement { border-left: none; border-right: 4px solid var(--crimson); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 400px; max-width: 480px; margin: 0 auto; width: 100%; }
  .features-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-left .num { font-size: 3rem; }
}
@media (max-width: 720px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    align-items: flex-start;
  }
  .lang-toggle { padding: 0.375rem 0.5rem; font-size: 0.75rem; }
  .lang-toggle .lang-btn-label { max-width: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid, .process-grid, .values-grid, .logos-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .contact-form-wrap { padding: 1.75rem; }
  .hero-card.card-1 { width: 220px; }
  .hero-card.card-2 { width: 200px; top: 130px; }
  .hero-card.card-3 { width: 230px; right: 20px; }
  .hero-visual { height: 380px; }
}
