/* ProAxis Engineering & Consultant — vibrant design system */

:root {
  /* core neutrals */
  --ink: #0B1220;
  --body-text: #1F2A44;
  --muted: #5B6B8C;
  --bg: #F6F8FC;
  --surface: #FFFFFF;
  --border: #E4E9F5;

  /* brand gradient family — drawn from the Pro Axis infinity mark */
  --blue: #155EEF;
  --azure: #2E90FA;
  --cyan: #06AED4;
  --violet: #7C5CFC;
  --coral: #FF6B4A;
  --amber: #F5A623;
  --green: #12B76A;

  --grad-primary: linear-gradient(135deg, #155EEF 0%, #06AED4 100%);
  --grad-warm: linear-gradient(135deg, #FF6B4A 0%, #F5A623 100%);
  --grad-violet: linear-gradient(135deg, #7C5CFC 0%, #2E90FA 100%);
  --grad-deep: linear-gradient(160deg, #0B1220 0%, #103A73 55%, #0A6E82 100%);
  --grad-mesh: radial-gradient(circle at 15% 20%, rgba(21,94,239,0.16) 0%, transparent 42%),
               radial-gradient(circle at 85% 10%, rgba(6,174,212,0.16) 0%, transparent 40%),
               radial-gradient(circle at 75% 85%, rgba(124,92,252,0.12) 0%, transparent 45%);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(11,18,32,0.06);
  --shadow-md: 0 12px 32px rgba(11,18,32,0.10);
  --shadow-lg: 0 24px 60px rgba(11,18,32,0.16);
  --shadow-glow: 0 20px 50px rgba(21,94,239,0.22);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--body-text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(21, 94, 239, 0.08);
  transition: box-shadow 0.3s, background 0.3s;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-main { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; color: var(--ink); }
.nav-brand-sub { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; text-decoration: none; color: var(--muted);
  padding: 9px 16px; border-radius: 999px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--blue); background: rgba(21,94,239,0.07); }
.nav-links a.active { color: var(--blue); background: rgba(21,94,239,0.1); font-weight: 600; }

.nav-cta {
  background: var(--grad-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 20px rgba(21,94,239,0.28);
}
.nav-cta:hover { color: #fff !important; filter: brightness(1.08); box-shadow: 0 10px 26px rgba(21,94,239,0.36); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; border-radius: 2px; background: var(--ink); display: block; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.06); }
.btn-outline { background: #fff; color: var(--ink); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.btn-outline:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-md); }
.btn-arrow { transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── BADGE / PILL LABEL ─── */
.badge-pill, .section-label, .hero-eyebrow, .page-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); background: rgba(21,94,239,0.08);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.badge-pill::before, .section-label::before, .hero-eyebrow::before, .page-eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-primary); display: block; flex-shrink: 0;
}
.on-dark .section-label, .on-dark.section-label { color: #BFE0FF; background: rgba(255,255,255,0.12); }

/* ─── SECTION COMMONS ─── */
section { position: relative; }
.section-inner { max-width: 1220px; margin: 0 auto; padding: 100px 6vw; }
.section-inner.tight { padding-top: 64px; padding-bottom: 64px; }

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 36px;
}
.section-heading em, .page-title em, .hero-title em, .cta-band h2 em {
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.on-dark .section-heading, .section-heading.on-dark { color: #fff; }

.divider { width: 56px; height: 4px; border-radius: 4px; background: var(--grad-primary); margin-bottom: 30px; }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  background: var(--bg);
  background-image: var(--grad-mesh);
  padding: 168px 6vw 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0;
}
.page-hero::before { width: 380px; height: 380px; background: rgba(21,94,239,0.22); top: -140px; right: 8%; }
.page-hero::after { width: 300px; height: 300px; background: rgba(6,174,212,0.22); bottom: -120px; left: 4%; }

.page-hero-inner { max-width: 1220px; margin: 0 auto; position: relative; z-index: 2; }
.page-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(2.4rem, 4.6vw, 4rem); line-height: 1.08; color: var(--ink); margin-bottom: 20px;
}
.page-lede { font-size: 1.05rem; line-height: 1.75; color: var(--muted); max-width: 640px; }

/* ─── HERO (home) ─── */
#hero {
  padding: 150px 6vw 90px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  background-image: var(--grad-mesh);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: 88vh;
}
#hero::before, #hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none;
}
#hero::before { width: 460px; height: 460px; background: rgba(21,94,239,0.20); top: -120px; right: -60px; }
#hero::after { width: 380px; height: 380px; background: rgba(6,174,212,0.22); bottom: -140px; left: -60px; }

.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem); line-height: 1.08; color: var(--ink); margin-bottom: 22px;
}
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: var(--muted); max-width: 480px; margin-bottom: 38px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats-row { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat b { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.hero-stat span { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

.hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.hero-visual-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21,94,239,0.28) 0%, rgba(6,174,212,0.14) 55%, transparent 75%);
  filter: blur(6px); animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }

.hero-mark { position: relative; z-index: 2; width: min(360px, 80%); animation: floatMark 6s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(21,94,239,0.28)); }
@keyframes floatMark { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(1.2deg); } }

.float-card {
  position: absolute; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink); z-index: 3;
}
.float-card .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.float-card-1 { top: 10%; left: -4%; }
.float-card-2 { bottom: 8%; right: -2%; }

/* ─── ABOUT / STATS ─── */
#about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-text p { font-size: 1.02rem; line-height: 1.85; color: var(--body-text); margin-bottom: 20px; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-cell {
  border-radius: var(--radius-md); padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: var(--shadow-sm); color: #fff;
}
.stat-cell:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-cell:nth-child(1) { background: var(--grad-primary); }
.stat-cell:nth-child(2) { background: var(--grad-violet); }
.stat-cell:nth-child(3) { background: linear-gradient(135deg, #0B1220 0%, #1F3A66 100%); }
.stat-cell:nth-child(4) { background: var(--grad-warm); }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ─── MISSION & VISION ─── */
#mission-vision { background: var(--bg); background-image: var(--grad-mesh); padding: 20px 0; }
.mv-wrapper { max-width: 1220px; margin: 0 auto; padding: 80px 6vw; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv-block {
  background: #fff; border-radius: var(--radius-lg); padding: 52px 44px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.mv-block:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-block::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--grad-primary); }
.mv-block:nth-child(2)::before { background: var(--grad-violet); }
.mv-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(21,94,239,0.09);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 26px;
}
.mv-block:nth-child(2) .mv-icon { background: rgba(124,92,252,0.1); }
.mv-heading { font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--ink); margin-bottom: 18px; line-height: 1.2; }
.mv-text { font-size: 0.96rem; line-height: 1.8; color: var(--muted); }
.mv-quote {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--blue);
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); line-height: 1.4;
}

/* ─── WHO WE ARE / VALUES ─── */
#who { background: var(--surface); }
.who-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: start; }
.who-text p { font-size: 1.02rem; line-height: 1.85; color: var(--body-text); margin-bottom: 20px; }
.who-values { display: flex; flex-direction: column; gap: 14px; }
.value-item {
  display: flex; gap: 18px; align-items: flex-start; padding: 22px; background: var(--bg);
  border-radius: var(--radius-md); transition: transform 0.25s, box-shadow 0.25s;
}
.value-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.value-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.value-item:nth-of-type(4n+1) .value-icon { background: rgba(21,94,239,0.1); }
.value-item:nth-of-type(4n+2) .value-icon { background: rgba(6,174,212,0.12); }
.value-item:nth-of-type(4n+3) .value-icon { background: rgba(124,92,252,0.1); }
.value-item:nth-of-type(4n+4) .value-icon { background: rgba(255,107,74,0.1); }
.value-title { font-family: 'Space Grotesk', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.value-desc { font-size: 0.87rem; line-height: 1.6; color: var(--muted); }

/* ─── SERVICES GRID ─── */
#services, .services-section { background: var(--bg); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 50px; align-items: end; }
.services-intro { font-size: 0.98rem; line-height: 1.85; color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 38px 32px;
  box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.service-num {
  position: absolute; top: 30px; right: 30px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--border);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 22px;
}
.service-card:nth-child(6n+1) .service-icon { background: rgba(21,94,239,0.1); }
.service-card:nth-child(6n+2) .service-icon { background: rgba(6,174,212,0.12); }
.service-card:nth-child(6n+3) .service-icon { background: rgba(255,107,74,0.1); }
.service-card:nth-child(6n+4) .service-icon { background: rgba(124,92,252,0.1); }
.service-card:nth-child(6n+5) .service-icon { background: rgba(245,166,35,0.12); }
.service-card:nth-child(6n+6) .service-icon { background: rgba(18,183,106,0.1); }

.service-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.service-desc { font-size: 0.89rem; line-height: 1.7; color: var(--muted); }
.service-list { margin-top: 16px; padding-left: 0; list-style: none; }
.service-list li { font-size: 0.83rem; color: var(--muted); padding: 5px 0 5px 18px; position: relative; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-primary); }

/* ─── PROJECTS / SECTORS ─── */
#projects, .projects-section { background: var(--surface); overflow: hidden; }
.projects-inner { max-width: 1220px; margin: 0 auto; padding: 100px 6vw; }
.proj-header { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-bottom: 56px; align-items: end; }
.proj-intro { font-size: 0.98rem; line-height: 1.85; color: var(--muted); }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 60px; }
.sector-card {
  background: var(--bg); border-radius: var(--radius-lg); padding: 34px 30px;
  border-top: 4px solid transparent; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.sector-card:nth-child(6n+1) { border-top-color: var(--blue); }
.sector-card:nth-child(6n+2) { border-top-color: var(--coral); }
.sector-card:nth-child(6n+3) { border-top-color: var(--cyan); }
.sector-card:nth-child(6n+4) { border-top-color: var(--violet); }
.sector-card:nth-child(6n+5) { border-top-color: var(--amber); }
.sector-card:nth-child(6n+6) { border-top-color: var(--green); }

.sector-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
  background: rgba(21,94,239,0.08); padding: 6px 12px; border-radius: 999px; display: inline-block; margin-bottom: 16px;
}
.sector-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.24rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.sector-desc { font-size: 0.88rem; line-height: 1.7; color: var(--muted); }

.case-list { display: flex; flex-direction: column; gap: 16px; }
.case-item {
  display: grid; grid-template-columns: 220px 1fr; gap: 30px; padding: 30px;
  background: var(--bg); border-radius: var(--radius-md); transition: transform 0.25s, box-shadow 0.25s;
}
.case-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.case-brand { font-family: 'Space Grotesk', sans-serif; font-size: 1.16rem; font-weight: 700; color: var(--ink); }
.case-sub { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); margin-top: 6px; }
.case-desc { font-size: 0.92rem; line-height: 1.75; color: var(--body-text); }

/* ─── PARTNERS / DIRECTORS ─── */
#partners, .partners-section {
  background: var(--grad-deep);
  position: relative; overflow: hidden;
}
.partners-section::before, .partners-section::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0;
}
.partners-section::before { width: 420px; height: 420px; background: rgba(21,94,239,0.35); top: -100px; right: -60px; }
.partners-section::after { width: 360px; height: 360px; background: rgba(6,174,212,0.3); bottom: -120px; left: -60px; }

.partners-layout { max-width: 1220px; margin: 0 auto; padding: 100px 6vw; position: relative; z-index: 2; }
.partners-header { text-align: center; margin-bottom: 56px; }
.partners-header .section-label { margin-left: auto; margin-right: auto; }
.partners-header .section-heading { color: #fff; }
.partners-header .section-heading em {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
.partner-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 44px 34px;
  transition: transform 0.3s, background 0.3s;
}
.partner-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); }

.partner-avatar {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.9rem; font-weight: 700; color: #fff;
  margin-bottom: 24px; padding: 3px; overflow: hidden;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.partner-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.partner-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.partner-title { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); font-weight: 700; margin-bottom: 20px; }
.partner-bio { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.68); margin-bottom: 20px; }
.partner-expertise { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.expertise-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; color: #fff; background: rgba(255,255,255,0.12); padding: 6px 12px; border-radius: 999px; }
.partner-contact { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.partner-contact a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.partner-contact a:hover { text-decoration: underline; }

/* ─── CREDENTIALS LIST (about page) ─── */
.credentials-block { margin-top: 18px; }
.credentials-block h4 {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin: 22px 0 10px;
}
.credentials-block ul { list-style: none; }
.credentials-block li { font-size: 0.87rem; line-height: 1.75; color: var(--body-text); padding-left: 18px; position: relative; }
.credentials-block li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-primary); }
.partners-layout .credentials-block li { color: rgba(255,255,255,0.68); }

/* ─── LOCATION ─── */
#location { background: var(--surface); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.location-info { display: flex; flex-direction: column; gap: 26px; }
.location-detail { display: flex; gap: 18px; align-items: flex-start; }
.loc-icon {
  width: 46px; height: 46px; border-radius: 14px; background: rgba(21,94,239,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.location-detail:nth-child(2) .loc-icon { background: rgba(6,174,212,0.12); }
.location-detail:nth-child(3) .loc-icon { background: rgba(255,107,74,0.1); }
.location-detail:nth-child(4) .loc-icon { background: rgba(124,92,252,0.1); }
.loc-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.loc-value { font-size: 0.94rem; line-height: 1.7; color: var(--body-text); }
.loc-value a { color: var(--body-text); text-decoration: none; }
.loc-value a:hover { color: var(--blue); }

.map-frame { position: relative; min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.map-overlay-label {
  position: absolute; bottom: 16px; left: 16px; background: rgba(11,18,32,0.85); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px;
}

/* ─── CONTACT / INQUIRY FORM ─── */
#contact, .contact-section { background: var(--bg); background-image: var(--grad-mesh); }
.contact-inner { max-width: 1220px; margin: 0 auto; padding: 100px 6vw; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.contact-left p { font-size: 0.98rem; line-height: 1.8; color: var(--muted); margin-bottom: 34px; }

.contact-channels { display: flex; flex-direction: column; gap: 10px; }
.contact-channel {
  display: flex; gap: 16px; align-items: center; padding: 16px 18px; text-decoration: none;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s;
}
.contact-channel:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.ch-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(21,94,239,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-channel:nth-child(2) .ch-icon { background: rgba(6,174,212,0.12); }
.contact-channel:nth-child(3) .ch-icon { background: rgba(18,183,106,0.12); }
.ch-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
.ch-value { font-size: 0.92rem; color: var(--body-text); font-weight: 500; }

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.02em; color: var(--muted); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink); font-family: 'Inter', sans-serif; font-size: 0.92rem; transition: border-color 0.25s, background 0.25s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: -6px; margin-bottom: 20px; line-height: 1.5; }

.btn-submit {
  width: 100%; padding: 17px; background: var(--grad-primary); border: none; border-radius: 999px; color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; box-shadow: var(--shadow-glow);
}
.btn-submit:hover { transform: translateY(-3px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-status { margin-top: 16px; font-size: 0.86rem; font-weight: 500; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--coral); }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--grad-deep);
  padding: 90px 6vw; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle, rgba(21,94,239,0.3) 0%, transparent 70%); filter: blur(10px); }
.cta-band-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-band h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.6rem); color: #fff; margin-bottom: 18px; line-height: 1.2; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 34px; font-size: 0.98rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 44px 6vw;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 700; color: #fff; }
.footer-tagline { font-size: 0.82rem; font-weight: 500; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .float-card { display: none; }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-visual { min-height: 280px; order: -1; }
  .about-grid, .who-layout, .services-header,
  .location-grid, .proj-header, .contact-inner, .mv-wrapper {
    grid-template-columns: 1fr;
  }
  .services-grid, .sector-grid, .partners-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mv-block { padding: 40px 30px; }
  .partner-card { padding: 38px 28px; }
  .case-item { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 22px; }
}

@media (max-width: 900px) {
  .nav-links.open {
    display: flex; position: absolute; top: 68px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: flex-start; padding: 16px 6vw 24px; gap: 6px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  }
  .nav-links.open a { width: 100%; }
}
