/* ==========================================================================
   MCT | Global stylesheet
   ========================================================================== */

:root {
  --navy: #1A2B5C;
  --navy-dark: #0E1B44;
  --navy-600: #24376E;
  --red: #E63946;
  --orange: #F4743B;
  --accent-gradient: linear-gradient(135deg, #E63946 0%, #F4743B 100%);
  --navy-gradient: linear-gradient(135deg, #0E1B44 0%, #1A2B5C 100%);
  --gray-50: #F7F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #E1E7F0;
  --gray-400: #9AA5B8;
  --gray-600: #5B6A82;
  --gray-800: #2A3447;
  --white: #FFFFFF;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(14, 27, 68, 0.06);
  --shadow: 0 10px 30px rgba(14, 27, 68, 0.08);
  --shadow-lg: 0 20px 60px rgba(14, 27, 68, 0.12);
  --max-width: 1240px;
  --nav-height: 130px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Manrope', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--gray-600); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section { padding: clamp(42px, 5.6vw, 77px) 0; }

.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 14px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.35);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--gray-100);
  color: var(--navy);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-icon svg { width: 18px; height: 18px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img {
  height: 112px;
  width: auto;
  display: block;
}
@media (max-width: 540px) {
  .nav-logo img { height: 96px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 1.27rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-50); }
.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; }

@media (max-width: 960px) {
  .nav-links, .nav-cta.desktop-only { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile {
    display: block;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow);
  }
  .nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
  }
  .nav-mobile a {
    display: block;
    padding: 14px 16px;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: 8px;
  }
  .nav-mobile a.active { background: var(--gray-50); color: var(--navy); font-weight: 600; }
  .nav-mobile .btn { width: 100%; }
}

main { padding-top: var(--nav-height); }

/* ==========================================================================
   Hero sections
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 98px) 0 clamp(56px, 7vw, 84px);
  background: var(--navy-gradient);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 27, 68, 0.7) 0%, rgba(26, 43, 92, 0.45) 55%, rgba(244, 116, 59, 0.35) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero p.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-accent-dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: -1;
}
.hero-accent-dot.red {
  width: 360px; height: 360px;
  background: var(--red);
  top: -80px; right: -80px;
}
.hero-accent-dot.orange {
  width: 280px; height: 280px;
  background: var(--orange);
  bottom: -60px; left: -60px;
}

/* Compact page hero (non-home) */
.page-hero {
  padding: clamp(56px, 7vw, 91px) 0 clamp(42px, 5.6vw, 63px);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }

/* Per-page hero backgrounds */
.hero.hero-services::before {
  background-image: url('https://images.unsplash.com/photo-1530026405186-ed1f139313f8?auto=format&fit=crop&w=1920&q=80');
}
.hero.hero-about::before {
  background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1920&q=80');
}
.hero.hero-coverage::before {
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
}
.hero.hero-contact::before {
  background-image: url('https://images.unsplash.com/photo-1581595220892-b0739db3ba8c?auto=format&fit=crop&w=1920&q=80');
}

/* ==========================================================================
   Pillars / feature cards
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.pillar {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(230,57,70,0.1) 0%, rgba(244,116,59,0.1) 100%);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--red);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.125rem; margin-bottom: 10px; }
.pillar p { font-size: 0.95rem; margin-bottom: 0; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin: 18px 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.service-card h3 { margin-bottom: 14px; font-size: 1.3rem; }
.service-card p { font-size: 0.97rem; margin-bottom: 0; }
.service-card .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--navy-gradient);
  color: var(--white);
  margin-bottom: 22px;
}
.service-card .icon-wrap svg { width: 28px; height: 28px; }

/* ==========================================================================
   Numbers / stats banner
   ========================================================================== */
.stats {
  background: var(--navy-gradient);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Photo: https://unsplash.com/photos/npxXWgQ33ZQ — abstract city lights / global network at night */
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.stats .container { position: relative; z-index: 1; }
.stats-intro {
  text-align: center;
  margin-bottom: 32px;
}
.stats-intro h2 { color: var(--white); }
.stats-intro p { color: rgba(255, 255, 255, 0.75); max-width: 640px; margin: 14px auto 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ==========================================================================
   Coverage / map section
   ========================================================================== */
.coverage-teaser { background: var(--gray-50); }
.coverage-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coverage-map-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
  padding: 40px;
  box-shadow: var(--shadow);
}
.coverage-map-image {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}
.coverage-map-image svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.coverage-map-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.coverage-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.region-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.region-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.region-count {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .coverage-map { grid-template-columns: 1fr; gap: 32px; }
  .coverage-regions { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Coverage page full
   ========================================================================== */
.regions-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.region-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.region-block:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.region-block h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.region-block .region-sub {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.region-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.region-block li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
  font-size: 0.97rem;
}
.region-block li:last-child { border-bottom: none; }
.region-block li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .regions-detail { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Process / timeline
   ========================================================================== */
.process { background: var(--gray-50); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 860px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process-timeline { grid-template-columns: 1fr; }
}
.process-step {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-step p { font-size: 0.95rem; margin-bottom: 0; }

/* ==========================================================================
   Why MCT / reasons
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card .why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 43, 92, 0.08) 0%, rgba(26, 43, 92, 0.04) 100%);
  color: var(--navy);
  margin-bottom: 20px;
}
.why-card .why-icon svg { width: 26px; height: 26px; }
.why-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.why-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ==========================================================================
   Clients / logos
   ========================================================================== */
.clients-section {
  background: var(--gray-50);
  position: relative;
}
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 28px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-width: 180px;
  height: 80px;
  filter: grayscale(1);
  opacity: 0.65;
  transition: all var(--transition);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-logo .client-mark {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 10px;
}

/* ==========================================================================
   Who we are / about content
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col .col-content h2 { margin-bottom: 20px; }
.two-col .col-content p { margin-bottom: 16px; font-size: 1.02rem; }
.two-col .col-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.two-col .col-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.two-col.reverse .col-content { order: 2; }
@media (max-width: 860px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse .col-content { order: 1; }
}

/* ==========================================================================
   Final CTA section
   ========================================================================== */
.final-cta {
  background: var(--navy-gradient);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,57,70,0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px; right: -200px;
}
.final-cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,116,59,0.18) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px; left: -150px;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form > p { color: var(--gray-600); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(26, 43, 92, 0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group .required { color: var(--red); }
.contact-form .btn { width: auto; margin-top: 8px; }

.contact-info {
  background: var(--navy-gradient);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(230,57,70,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h2 { color: var(--white); font-size: 1.4rem; margin-bottom: 10px; }
.contact-info > p { color: rgba(255, 255, 255, 0.8); margin-bottom: 30px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item .ci-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item .ci-icon svg { width: 20px; height: 20px; }
.contact-item .ci-content small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-item .ci-content a,
.contact-item .ci-content span {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  word-break: break-word;
}
.contact-item .ci-content a:hover { color: rgba(255, 255, 255, 0.8); }

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo img {
  height: 64px;
  width: auto;
}
.footer-brand p {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--white); }
.footer .contact-brief p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.footer .contact-brief a { color: var(--white); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ==========================================================================
   Utility & animations
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays for grouped elements */
.fade-in.delay-1 { transition-delay: 0.08s; }
.fade-in.delay-2 { transition-delay: 0.16s; }
.fade-in.delay-3 { transition-delay: 0.24s; }
.fade-in.delay-4 { transition-delay: 0.32s; }
.fade-in.delay-5 { transition-delay: 0.40s; }
.fade-in.delay-6 { transition-delay: 0.48s; }

/* Automatic stagger for grids (first 8 children) */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }
.stagger > *:nth-child(7) { transition-delay: 0.47s; }
.stagger > *:nth-child(8) { transition-delay: 0.54s; }

/* Directional fade-ins */
.fade-left { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }
.fade-left.visible, .fade-right.visible { transform: translateX(0); }
.fade-scale { transform: scale(0.96); }
.fade-scale.visible { transform: scale(1); }

/* Hero entrance sequence */
.hero h1, .hero .hero-sub, .hero .hero-ctas, .hero .eyebrow {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero .eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero .hero-sub { animation-delay: 0.35s; }
.hero .hero-ctas { animation-delay: 0.5s; }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Floating accent dots */
.hero-accent-dot {
  animation: float 8s ease-in-out infinite;
}
.hero-accent-dot.orange { animation-delay: 1.5s; animation-duration: 10s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

/* Image zoom on card hover */
.col-visual, .service-card, .region-block, .region-card, .why-card {
  overflow: hidden;
}
.col-visual img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.col-visual:hover img { transform: scale(1.05); }

/* Arrow slide on button hover */
.btn svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover svg { transform: translateX(4px); }

/* Card icon subtle float */
.pillar:hover .pillar-icon,
.service-card:hover .icon-wrap,
.why-card:hover .why-icon {
  transform: translateY(-4px) scale(1.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-icon, .service-card .icon-wrap, .why-card .why-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stat number count-up prep */
.stat-number {
  display: inline-block;
}
.stat.counting .stat-number {
  animation: statPop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes statPop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

/* Ribbon gradient shift on service card hover */
.service-card::before {
  background: linear-gradient(90deg, #E63946 0%, #F4743B 50%, #E63946 100%);
  background-size: 200% 100%;
}
.service-card:hover::before {
  animation: ribbonShift 2s linear infinite;
}
@keyframes ribbonShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Hero BG subtle parallax/Ken Burns */
.hero::before {
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* Map dots staggered pulse */
.map-dot:nth-child(1)  { animation-delay: 0.0s; }
.map-dot:nth-child(2)  { animation-delay: 0.15s; }
.map-dot:nth-child(3)  { animation-delay: 0.30s; }
.map-dot:nth-child(4)  { animation-delay: 0.45s; }
.map-dot:nth-child(5)  { animation-delay: 0.60s; }
.map-dot:nth-child(6)  { animation-delay: 0.75s; }
.map-dot:nth-child(7)  { animation-delay: 0.90s; }
.map-dot:nth-child(8)  { animation-delay: 1.05s; }
.map-dot:nth-child(9)  { animation-delay: 1.20s; }
.map-dot:nth-child(10) { animation-delay: 1.35s; }
.map-dot:nth-child(11) { animation-delay: 1.50s; }
.map-dot:nth-child(12) { animation-delay: 1.65s; }
.map-dot:nth-child(13) { animation-delay: 1.80s; }
.map-dot:nth-child(14) { animation-delay: 1.95s; }
.map-dot:nth-child(15) { animation-delay: 2.10s; }
.map-dot:nth-child(16) { animation-delay: 2.25s; }
.map-dot:nth-child(17) { animation-delay: 2.40s; }
.map-dot:nth-child(18) { animation-delay: 2.55s; }

/* Client logo subtle slide */
.client-logo {
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.client-logo:hover {
  transform: translateY(-3px);
}

.text-center { text-align: center; }
.mt-lg { margin-top: 28px; }
.bg-gray { background: var(--gray-50); }

/* Selection */
::selection { background: var(--red); color: var(--white); }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ==========================================================================
   World map SVG dots pulse
   ========================================================================== */
.map-dot {
  fill: #E63946;
  animation: pulse 2s ease-in-out infinite;
}
.map-dot:nth-child(even) { animation-delay: 0.5s; }
.map-dot:nth-child(3n) { animation-delay: 1s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform-origin: center; }
  50% { opacity: 0.4; }
}
