:root {
  --navy: #3434A6;
  --navy-2: #282884;
  --steel: #6d7886;
  --steel-2: #e7ebef;
  --white: #ffffff;
  --off: #F5F7FA;
  --orange: #16A5E8;
  --orange-dark: #0f83bb;
  --ink: #1F2937;
  --muted: #657180;
  --line: rgba(109, 120, 134, 0.22);
  --shadow: 0 18px 55px rgba(7, 22, 38, 0.14);
  --radius: 8px;
  --max: 1180px;
  --nav-max: 1540px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 18px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible {
  outline: 3px solid rgba(244, 124, 32, 0.62);
  outline-offset: 3px;
}

.container { width: min(100% - 36px, var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.section.tight { padding: 58px 0; }
.section.dark { background: var(--navy); color: var(--white); }
.section.alt { background: var(--off); }
.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 430px);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}
h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 16px; color: inherit; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); max-width: 1020px; }
h2 { font-size: clamp(2.15rem, 3.5vw, 3.45rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 18px; color: var(--muted); }
.dark p, .hero p, .page-hero p { color: rgba(255,255,255,0.76); }
.lead { font-size: 1.24rem; max-width: 920px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.topbar {
  display: none;
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.navbar .container {
  width: min(100% - 64px, var(--nav-max));
}
.nav-inner {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 900;
  color: var(--navy);
  flex: 0 0 auto;
}
.brand-logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  filter: none;
}
.brand > span {
  display: none;
  max-width: 260px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: 0;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--steel);
  font-weight: 750;
  font-size: 0.74rem;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 10px 9px;
  color: #263647;
  font-size: 0.98rem;
  font-weight: 750;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  color: var(--navy);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero {
  min-height: 720px;
  padding: 110px 0 130px;
  color: var(--white);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.24) 58%, rgba(0,0,0,0.06)),
    url("../assets/wisblomirad-hero-city.jpeg") center/cover;
}
.hero-card {
  max-width: 860px;
  position: relative;
  z-index: 4;
}
.hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55);
}
.trust-strip {
  margin-top: -36px;
  position: relative;
  z-index: 3;
}
.trust-strip .container {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-item { padding: 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: 0.92rem; }

.page-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,22,38,0.94), rgba(7,22,38,0.62)),
    var(--hero-image, url("https://images.unsplash.com/photo-1485083269755-a7b559a4fe5e?auto=format&fit=crop&w=1800&q=85")) center/cover;
}
.breadcrumb { color: rgba(255,255,255,0.72); font-weight: 700; margin-bottom: 16px; }
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.back-button:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(7,22,38,0.05);
  overflow: hidden;
}
.service-card, .value-card, .cert-card, .job-card, .blog-card, .team-card {
  padding: 32px;
  height: 100%;
}
.service-detail {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
  padding: 0;
}
.service-detail-media {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(7,22,38,0.08), rgba(7,22,38,0.82)),
    var(--detail-image) center/cover;
}
.service-detail-body {
  padding: 34px;
}
.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.deliverables span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--off);
  border-left: 3px solid var(--orange);
  color: var(--navy);
  font-weight: 800;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.process-step {
  padding: 28px 20px;
  background: var(--navy-2);
}
.process-step strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
}
.process-step h3 { color: var(--white); }
.process-step p { color: rgba(255,255,255,0.7); }
.package-card {
  padding: 30px;
  min-height: 100%;
  border-top: 5px solid var(--orange);
}
.package-card .price-note {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 12px;
}
.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(52,52,166,0.1), rgba(22,165,232,0.14));
  color: var(--orange);
  border: 1px solid rgba(22,165,232,0.2);
  border-radius: 8px;
  font-weight: 950;
  margin-bottom: 20px;
}
.icon-box svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7,22,38,0.14), rgba(7,22,38,0.94)),
    var(--industry-image) center/cover;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
}
.industry-card > * { position: relative; }
.industry-card p { color: rgba(255,255,255,0.76); }
.procurement-band {
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(135deg, rgba(244,124,32,0.16), transparent 36%),
    var(--navy);
}
.procurement-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}
.procurement-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.procurement-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.84);
  font-weight: 780;
}
.project-card {
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.project-card img { width: 100%; height: 236px; object-fit: cover; }
.project-body { padding: 22px; }
.meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--steel); font-size: 0.9rem; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(244,124,32,0.12);
  color: var(--orange-dark);
  font-weight: 850;
  font-size: 0.78rem;
}
.feature-list, .check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.feature-list li, .check-list li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.feature-list li::before, .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 2px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.stat {
  padding: 34px 24px;
  background: var(--navy-2);
}
.stat strong { display: block; font-size: 2.6rem; color: var(--white); line-height: 1; }
.stat span { color: rgba(255,255,255,0.68); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}
.image-panel {
  min-height: 440px;
  border-radius: var(--radius);
  background: var(--panel-image, url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=85")) center/cover;
  box-shadow: var(--shadow);
}
.timeline { border-left: 2px solid var(--line); padding-left: 28px; }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
  border-radius: 50%;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  padding: 9px 14px;
  font-weight: 850;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); }

.document-card {
  padding: 22px;
  min-height: 260px;
  background:
    linear-gradient(90deg, transparent 0 66%, rgba(244,124,32,0.08) 66% 68%, transparent 68%),
    repeating-linear-gradient(180deg, transparent 0 30px, rgba(109,120,134,0.11) 31px 32px),
    var(--white);
  border-top: 5px solid var(--orange);
  position: relative;
}
.document-card::after {
  content: attr(data-doc);
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(7,22,38,0.12);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}
.document-card .stamp {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 2px solid rgba(244,124,32,0.55);
  color: var(--orange-dark);
  font-weight: 900;
  transform: rotate(-2deg);
  margin-top: 18px;
}

.testimonial {
  padding: 30px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.testimonial p { color: rgba(255,255,255,0.82); }
.testimonial strong { color: var(--white); }
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.logo-tile {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--steel);
  font-weight: 900;
  border-radius: var(--radius);
}

.team-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 6px; margin-bottom: 18px; }
.role { color: var(--orange); font-weight: 850; margin-bottom: 10px; }
.project-hero-image {
  height: 500px;
  background: linear-gradient(90deg, rgba(7,22,38,0.76), rgba(7,22,38,0.15)), url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=85") center/cover;
  display: grid;
  align-items: end;
  color: var(--white);
  padding: 56px 0;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fact { padding: 20px; background: var(--off); border-left: 4px solid var(--orange); }
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.metric-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.metric-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
}
.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.before-after figure {
  margin: 0;
  position: relative;
}
.before-after img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}
.before-after figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(7,22,38,0.88);
  color: var(--white);
  padding: 7px 11px;
  border-radius: 6px;
  font-weight: 850;
}
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.gallery img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); }
.gallery img:first-child { height: 496px; grid-row: span 2; }

.form {
  display: grid;
  gap: 15px;
}
.form label { font-weight: 800; color: var(--navy); }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}
.form textarea { min-height: 150px; resize: vertical; }
.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(7,22,38,0.78), rgba(7,22,38,0.42)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=85") center/cover;
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  padding: 26px;
}

.cta {
  background:
    linear-gradient(90deg, rgba(7,22,38,0.94), rgba(13,34,56,0.88)),
    url("https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: var(--white);
}
.footer {
  background: #06111f;
  color: var(--white);
  padding: 64px 0 24px;
}
.footer .brand-logo {
  width: 170px;
  height: 170px;
  border-radius: 10px;
  padding: 0;
  object-fit: cover;
  filter: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 38px;
}
.footer a, .footer p { color: rgba(255,255,255,0.68); }
.footer a:hover { color: var(--orange); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.copyright { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; color: rgba(255,255,255,0.54); font-size: 0.9rem; }
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  font-weight: 950;
  animation: whatsapp-float 2.8s ease-in-out infinite;
}
.whatsapp svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}
.whatsapp::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 50%;
  animation: whatsapp-pulse 2.8s ease-out infinite;
}
@keyframes whatsapp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes whatsapp-pulse {
  0% { transform: scale(0.88); opacity: 0.8; }
  70%, 100% { transform: scale(1.22); opacity: 0; }
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
  .navbar .container { width: min(100% - 44px, var(--nav-max)); }
  .brand-logo { width: 112px; height: 112px; }
  .brand > span { display: none; }
  .nav-inner { gap: 28px; }
}

@media (max-width: 1040px) {
  .nav-links {
    position: fixed;
    inset: 112px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .menu-toggle { display: block; }
  .section-head, .split { grid-template-columns: 1fr; }
  .grid-4, .trust-strip .container, .stats, .facts, .metrics-row, .procurement-list { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .procurement-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .topbar .container { display: none; }
  body { font-size: 17px; }
  .navbar .container { width: min(100% - 28px, var(--nav-max)); }
  .nav-inner { min-height: 104px; }
  .nav-links { inset: 112px 18px auto 18px; }
  .brand-logo { width: 88px; height: 88px; }
  .hero { min-height: 630px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .trust-strip .container, .stats, .facts, .footer-grid, .logos, .metrics-row, .procurement-list, .before-after { grid-template-columns: 1fr; }
  .process-grid, .deliverables { grid-template-columns: 1fr; }
  .trust-strip { margin-top: 0; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: 1fr; }
  .gallery img, .gallery img:first-child { height: 240px; grid-row: auto; }
  .actions .btn { width: 100%; }
}
