/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root { --font: 'Inter', sans-serif; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 55% 45% at 8% 12%,  rgba(20,200,220,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 92% 88%, rgba(10,80,160,0.22) 0%, transparent 55%),
    linear-gradient(155deg, #0a8fa0 0%, #076a82 35%, #044d6e 68%, #022f50 100%);
  background-attachment: fixed;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 40px); max-width: 1160px;
  height: 58px; z-index: 1000;
  display: flex; align-items: center; padding: 0 6px;
  border-radius: 29px;
  background: rgba(3,9,26,0.48);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 4px 20px rgba(0,0,0,0.20),
    0 12px 40px rgba(0,0,0,0.14);
  transition: background 0.3s, border-color 0.3s;
}
.navbar.solid {
  background: rgba(3,9,26,0.72);
  border-color: rgba(255,255,255,0.11);
}

.nav-logo {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  flex-shrink: 0; text-decoration: none;
  background: rgba(8,22,68,0.70);
  border: 1px solid rgba(40,120,240,0.30);
  transition: transform 0.25s, box-shadow 0.25s;
}
.nav-logo:hover { transform: scale(1.07); box-shadow: 0 0 20px rgba(30,120,230,0.50); }
#navLogoCanvas { width: 40px !important; height: 40px !important; }

.nav-links {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 1px;
}
.nav-link {
  padding: 6px 13px; font-size: 13px; font-weight: 400;
  color: rgba(190,220,255,0.68); border-radius: 18px;
  text-decoration: none; letter-spacing: 0.1px; white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.nav-link:hover { color: rgba(255,255,255,0.95); background: rgba(255,255,255,0.07); }
.nav-link.active { color: white; font-weight: 500; background: rgba(30,100,220,0.18); }

.nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 7px 18px; font-size: 12.5px; font-weight: 600;
  color: white; text-decoration: none; border-radius: 20px;
  background: #CC1E2B; border: 1px solid rgba(255,100,110,0.18);
  box-shadow: 0 2px 14px rgba(204,30,43,0.35);
  letter-spacing: 0.15px; transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.nav-cta:hover { background: #e02030; box-shadow: 0 4px 20px rgba(204,30,43,0.52); transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 9px 10px;
}
.nav-hamburger span {
  display: block; width: 19px; height: 1.5px;
  background: rgba(190,220,255,0.80); border-radius: 2px;
  transition: transform 0.26s, opacity 0.26s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.26s; }
.reveal-d4 { transition-delay: 0.34s; }
.reveal-d5 { transition-delay: 0.42s; }
.reveal-d6 { transition-delay: 0.50s; }

@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity:1; }
  50%     { transform: scale(1.6); opacity:0.4; }
}

/* ─── LAYOUT ─── */
.section {
  padding: 100px 24px;
  max-width: 1160px; margin: 0 auto;
}
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(80,210,235,0.85); margin-bottom: 14px; display: block;
}
.section-title {
  font-size: clamp(26px,4vw,42px); font-weight: 800; color: white;
  line-height: 1.12; letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-sub {
  font-size: 15px; color: rgba(180,220,240,0.62); line-height: 1.75; max-width: 560px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 14px; font-weight: 600;
  color: white; text-decoration: none; border-radius: 24px;
  background: linear-gradient(135deg, #1e7de8, #1055c0);
  box-shadow: 0 4px 20px rgba(30,125,232,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,125,232,0.55); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 14px; font-weight: 500;
  color: rgba(200,230,255,0.85); text-decoration: none; border-radius: 24px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.11); color: white; transform: translateY(-2px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 110px 24px 80px; position: relative; overflow: hidden;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before {
  width: 700px; height: 700px; top: -220px; right: -220px;
  background: radial-gradient(circle, rgba(30,125,232,0.10) 0%, transparent 70%);
}
.hero::after {
  width: 550px; height: 550px; bottom: -180px; left: -180px;
  background: radial-gradient(circle, rgba(20,200,220,0.09) 0%, transparent 70%);
}
.hero-canvas-wrap {
  width: 180px; height: 180px; margin-bottom: 36px;
  animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(80,210,235,0.80); margin-bottom: 18px;
  animation: fadeUp 0.9s 0.15s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-title {
  font-size: clamp(38px,6.5vw,74px); font-weight: 800; line-height: 1.04;
  letter-spacing: -1.5px; color: white; margin-bottom: 22px;
  animation: fadeUp 0.9s 0.25s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #5dd4f0 0%, #4ab0ff 45%, #7090ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 16px; color: rgba(180,220,240,0.68); line-height: 1.75;
  max-width: 480px; margin-bottom: 42px;
  animation: fadeUp 0.9s 0.35s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.9s 0.45s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(180,220,240,0.38); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 16px; height: 16px; stroke: currentColor; }

/* ─── STATS BAR ─── */
.stats-bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.12);
}
.stats-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); padding: 0 24px;
}
.stat-item {
  padding: 44px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 44px; font-weight: 800; color: white; line-height: 1;
  margin-bottom: 7px; font-variant-numeric: tabular-nums;
}
.stat-num sup { font-size: 24px; color: rgba(80,210,235,0.9); }
.stat-label {
  font-size: 11.5px; font-weight: 500; letter-spacing: 1.2px;
  color: rgba(180,220,240,0.50); text-transform: uppercase;
}

/* ─── SERVICE CARDS (homepage overview) ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 52px;
}
.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px 24px; transition: all 0.25s; cursor: default;
}
.service-card:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(100,190,255,0.22);
  transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}
.svc-ico {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(30,125,232,0.13); border: 1px solid rgba(30,125,232,0.20);
}
.svc-ico svg { width: 22px; height: 22px; stroke: rgba(80,190,255,0.90); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 9px; line-height: 1.35; }
.service-card p  { font-size: 12.5px; color: rgba(180,220,240,0.55); line-height: 1.65; }

/* ─── WHY US ─── */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px;
}
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 17px; padding: 26px 22px;
  display: flex; gap: 16px; transition: all 0.22s;
}
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.why-ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(204,30,43,0.13); border: 1px solid rgba(204,30,43,0.22);
}
.why-ico svg { width: 18px; height: 18px; stroke: rgba(255,100,110,0.90); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.why-card h4 { font-size: 13.5px; font-weight: 600; color: white; margin-bottom: 6px; }
.why-card p  { font-size: 12px; color: rgba(180,220,240,0.52); line-height: 1.65; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: rgba(20,100,200,0.08);
  border-top: 1px solid rgba(30,125,232,0.14);
  border-bottom: 1px solid rgba(30,125,232,0.14);
}
.cta-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 80px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(22px,3vw,36px); font-weight: 800; color: white; letter-spacing: -0.3px; }
.cta-text p  { font-size: 15px; color: rgba(180,220,240,0.60); margin-top: 9px; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 160px 24px 72px; max-width: 1160px; margin: 0 auto;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(34px,5.5vw,60px); font-weight: 800; color: white;
  line-height: 1.06; letter-spacing: -0.8px; margin-bottom: 18px;
}
.page-hero p { font-size: 16px; color: rgba(180,220,240,0.62); line-height: 1.75; max-width: 580px; }

/* ─── SERVICES FULL PAGE ─── */
.svc-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(330px,1fr)); gap: 24px; margin-top: 52px;
}
.svc-full-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 36px 30px; transition: all 0.25s;
}
.svc-full-card:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(100,190,255,0.22);
  transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.20);
}
.svc-full-ico {
  width: 62px; height: 62px; border-radius: 17px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  background: rgba(30,125,232,0.12); border: 1px solid rgba(30,125,232,0.20);
}
.svc-full-ico svg { width: 28px; height: 28px; stroke: rgba(80,190,255,0.90); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svc-full-card h3 { font-size: 17px; font-weight: 700; color: white; margin-bottom: 12px; line-height: 1.3; }
.svc-full-card p  { font-size: 13.5px; color: rgba(180,220,240,0.58); line-height: 1.72; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.svc-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2px;
  color: rgba(100,200,245,0.80);
  background: rgba(30,150,200,0.12); border: 1px solid rgba(30,150,200,0.18);
  border-radius: 20px; padding: 3px 10px;
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 0 24px; max-width: 1160px; margin: 0 auto 100px;
}
.about-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ab-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px; padding: 28px 22px; text-align: center;
}
.ab-num { font-size: 36px; font-weight: 800; color: white; line-height: 1; }
.ab-num sup { font-size: 20px; color: rgba(80,210,235,0.9); }
.ab-lbl { font-size: 10.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(180,220,240,0.50); margin-top: 6px; }

.mission-vision {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding: 0 24px; max-width: 1160px; margin: 0 auto 52px;
}
.mv-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px; padding: 38px 32px;
}
.mv-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(80,210,235,0.80); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.mv-tag::before { content: ''; width: 28px; height: 1.5px; background: rgba(80,210,235,0.45); flex-shrink: 0; }
.mv-card h3 { font-size: 22px; font-weight: 700; color: white; margin-bottom: 14px; }
.mv-card p  { font-size: 14px; color: rgba(180,220,240,0.62); line-height: 1.78; }

.activities-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(210px,1fr)); gap: 16px;
  padding: 0 24px; max-width: 1160px; margin: 52px auto 0;
}
.act-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 22px 20px; transition: all 0.22s;
}
.act-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(100,180,255,0.18); }
.act-card h4 { font-size: 13px; font-weight: 600; color: white; margin-bottom: 12px; }
.act-card ul { list-style: none; }
.act-card li {
  font-size: 12px; color: rgba(180,220,240,0.52); padding: 3.5px 0;
  display: flex; align-items: center; gap: 8px;
}
.act-card li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(80,200,240,0.55); flex-shrink: 0;
}

/* ─── PROJECTS PAGE ─── */
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 24px; margin-top: 52px;
}
.proj-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; overflow: hidden; transition: all 0.25s;
}
.proj-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); box-shadow: 0 18px 52px rgba(0,0,0,0.24); }
.proj-visual {
  height: 190px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.proj-visual svg { position: relative; z-index: 1; }
.proj-body { padding: 24px 26px 28px; }
.proj-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(80,210,235,0.75); margin-bottom: 8px;
}
.proj-card h3 { font-size: 16px; font-weight: 600; color: white; margin-bottom: 10px; line-height: 1.35; }
.proj-card p  { font-size: 13px; color: rgba(180,220,240,0.54); line-height: 1.67; }

/* ─── CONTACT PAGE ─── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; margin-top: 52px;
}
.contact-info-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 40px 34px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-item:last-of-type { border-bottom: none; }
.ci-ico {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(30,125,232,0.12); border: 1px solid rgba(30,125,232,0.20);
}
.ci-ico svg { width: 17px; height: 17px; stroke: rgba(80,190,255,0.90); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ci-label { font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(80,200,240,0.65); margin-bottom: 4px; }
.ci-value { font-size: 14px; color: rgba(220,235,255,0.90); }
.ci-value a { color: inherit; text-decoration: none; transition: color 0.18s; }
.ci-value a:hover { color: rgba(100,200,245,0.95); }

.wa-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; margin-top: 24px;
  background: rgba(37,211,102,0.10); border: 1px solid rgba(37,211,102,0.22);
  border-radius: 16px; color: white; text-decoration: none;
  font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.wa-btn:hover { background: rgba(37,211,102,0.18); transform: translateY(-1px); }
.wa-ico { width: 38px; height: 38px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-ico svg { width: 20px; height: 20px; fill: white; }

.contact-form-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 40px 34px;
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.5px; color: rgba(180,220,240,0.60); margin-bottom: 8px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px; padding: 11px 14px; font-size: 14px; color: white;
  font-family: var(--font); outline: none; transition: border-color 0.2s, background 0.2s; appearance: none;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(180,220,240,0.28); }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: rgba(30,125,232,0.50); background: rgba(255,255,255,0.09);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row select option { background: #044d6e; color: white; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; padding: 13px; font-size: 14px; font-weight: 600;
  color: white; background: linear-gradient(135deg, #1e7de8, #1055c0);
  border: none; border-radius: 13px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(30,125,232,0.35); transition: all 0.2s; font-family: var(--font);
}
.btn-submit:hover { background: linear-gradient(135deg, #2a8ef5, #1565d0); box-shadow: 0 6px 28px rgba(30,125,232,0.50); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.18);
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.1fr; gap: 48px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 18px;
}
.footer-brand-logo canvas { width: 38px !important; height: 38px !important; }
.footer-brand-name { font-size: 15px; font-weight: 700; color: white; }
.footer-brand-name span { display: block; font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(180,220,240,0.45); }
.footer-brand p { font-size: 13px; color: rgba(180,220,240,0.45); line-height: 1.72; max-width: 270px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.footer-social a:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.20); }
.footer-social svg { width: 14px; height: 14px; stroke: rgba(180,220,240,0.65); stroke-width: 1.8; fill: none; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(80,200,240,0.65); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 13px; color: rgba(180,220,240,0.48); text-decoration: none; transition: color 0.18s; }
.footer-col a:hover { color: rgba(200,230,255,0.85); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: rgba(80,200,240,0.60); stroke-width: 1.8; fill: none; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 12.5px; color: rgba(180,220,240,0.48); line-height: 1.55; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  max-width: 1160px; margin: 0 auto;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(180,220,240,0.32);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2,1fr); }
  .why-grid         { grid-template-columns: repeat(2,1fr); }
  .about-grid       { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; position: fixed;
    top: calc(16px + 58px + 10px); left: 20px; right: 20px;
    flex-direction: column; align-items: stretch;
    background: rgba(3,9,26,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.09); border-radius: 22px;
    padding: 10px 8px 14px; gap: 2px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40);
    animation: menuSlide 0.22s ease forwards;
  }
  .nav-links.open .nav-link { text-align: center; border-radius: 14px; padding: 11px 14px; }
  .section       { padding: 72px 20px; }
  .page-hero     { padding: 130px 20px 60px; }
  .stats-inner   { grid-template-columns: repeat(2,1fr); }
  .stat-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(2) { border-bottom: none; border-right: none; }
  .stat-item:last-child   { border-bottom: none; }
  .why-grid      { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; margin: 0 20px; }
  .activities-grid { padding: 0 20px; margin-top: 40px; }
  .form-cols     { grid-template-columns: 1fr; }
  .cta-inner     { flex-direction: column; text-align: center; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-grid    { padding: 0 20px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .about-badges  { grid-template-columns: 1fr 1fr; }
  .hero-title    { letter-spacing: -0.5px; }
}
