@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

/* =========================================
   Velka Engineering Services - styles.css
   Home page (index.html) - modern UI/UX
   ========================================= */

/* ---------- Brand Variables ---------- */
:root {
  --velka-blue: #0b5ea8;
  --velka-blue-2: #084f8d;
  --velka-green: #6ecf3a;
  --velka-teal: #2bb0a6;

  --ink: #0f1d27;          /* deep navy/charcoal */
  --text: #1f2a33;         /* body text */
  --muted: #667085;        /* muted text */
  --line: rgba(15, 29, 39, 0.10);

  --bg: #ffffff;
  --bg-soft: #f5f7fa;

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow-sm: 0 10px 24px rgba(15, 29, 39, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 29, 39, 0.14);

  --container-gap: 72px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 78px; /* fixed nav offset */
}

a { text-decoration: none; }

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

.section-pad { padding: var(--container-gap) 0; }
.section-muted { background: var(--bg-soft); }

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.section-text {
  color: var(--muted);
  margin: 0;
  max-width: 68ch;
}

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, rgba(11, 94, 168, 0.12), rgba(110, 207, 58, 0.10));
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.topbar-left span {
  color: rgba(15, 29, 39, 0.72);
  font-size: 0.92rem;
}

.topbar-link {
  color: rgba(15, 29, 39, 0.78);
  font-weight: 600;
  font-size: 0.92rem;
}

.topbar-link:hover { color: var(--velka-blue); }

/* ---------- Navbar ---------- */
.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 29, 39, 0.08);
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.navbar {
  padding-top: 0.35rem;
  padding-bottom: 0.1rem;
}

.brand-text { line-height: 1.05; }

.brand-name {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: #fff;
}

.brand-tag {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.navbar .nav-link {
 color: var(--ink) !important;
  font-weight: 600;
  padding: 0.75rem 0.9rem !important;
  position: relative;
  transition: color 180ms ease;
}

.navbar .nav-link:hover {
  color: var(--velka-blue) !important;
}

.navbar .nav-link.active {
  color: var(--velka-blue) !important;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  bottom: 0.35rem;
  width: calc(100% - 1.8rem);
  height: 2px;
  background: linear-gradient(90deg, var(--velka-green), var(--velka-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
  opacity: 0.95;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.main-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--velka-blue), var(--velka-green));
  opacity: 0.7;
}

/* ---------- Buttons ---------- */
.btn-brand {
  background: linear-gradient(90deg, var(--velka-blue), var(--velka-teal));
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-brand:hover,
.btn-brand:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.03);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-ghost:hover,
.btn-ghost:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-outline-brand {
  border: 1.5px solid rgba(11, 94, 168, 0.35);
  color: var(--velka-blue);
  background: #fff;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  transform: translateY(-2px);
  border-color: rgba(11, 94, 168, 0.55);
  box-shadow: var(--shadow-sm);
}

.btn-link-brand {
  color: var(--velka-blue);
  font-weight: 800;
  padding: 0;
}

.btn-link-brand:hover { color: var(--velka-blue-2); }

/* ---------- Hero ---------- */


.hero {
  position: relative;
  padding: 86px 0 64px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 20% 25%, rgba(110, 207, 58, 0.25), transparent 45%),
              radial-gradient(circle at 80% 30%, rgba(43, 176, 166, 0.22), transparent 55%),
              linear-gradient(135deg, rgba(11, 94, 168, 0.92), rgba(15, 29, 39, 0.92));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 94, 168, 0.4), rgba(110, 207, 58, 0.18)),
    url("images/engineers.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(0.95) contrast(1.05) brightness(0.82);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.hero-title {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 14px;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}

.hero-accent {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.78));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 70ch;
  font-size: 1.08rem;
  margin: 0 0 20px;
}

.hero-cta .btn-lg {
  padding: 0.9rem 1.3rem;
  font-size: 1.02rem;
}

.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
}

.trust-item i { color: var(--velka-green); }

/* Hero Card */
.hero-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-card-header {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 14px;
}

.hc-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.hc-sub {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  font-weight: 650;
}

.hero-list li:last-child { border-bottom: none; }
.hero-list i { color: var(--velka-green); margin-top: 3px; }

.hero-wave {
  height: 52px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.06));
  position: relative;
  margin-top: 44px;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 29, 39, 0.06);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.14), rgba(110, 207, 58, 0.12));
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  flex: 0 0 44px;
}

.feature-title {
  font-weight: 850;
  color: var(--ink);
  margin-bottom: 2px;
}

.feature-text {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.98rem;
}

/* ---------- Image Panel (right side) ---------- */
.image-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.10), rgba(110, 207, 58, 0.10));
  border: 1px solid rgba(11, 94, 168, 0.14);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.image-panel-inner {
  padding: 26px;
  background:
    radial-gradient(circle at 80% 30%, rgba(43, 176, 166, 0.16), transparent 55%),
    radial-gradient(circle at 20% 30%, rgba(110, 207, 58, 0.12), transparent 50%);
}

.image-panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 94, 168, 0.10);
  border: 1px solid rgba(11, 94, 168, 0.16);
  font-weight: 800;
  color: var(--velka-blue);
  margin-bottom: 14px;
}

.image-panel-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.image-panel-text {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 62ch;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  border-radius: 16px;
  padding: 14px 12px;
  border: 1px solid rgba(15, 29, 39, 0.10);
  background: rgba(255, 255, 255, 0.8);
}

.stat-num {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--velka-blue);
  font-size: 1.4rem;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.9rem;
  margin-top: 6px;
}

/* ---------- Services Cards ---------- */
.service-card {
  display: block;
  height: 100%;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 29, 39, 0.10);
  box-shadow: 0 10px 26px rgba(15, 29, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(110, 207, 58, 0.18), transparent 45%),
              radial-gradient(circle at 80% 30%, rgba(43, 176, 166, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 94, 168, 0.22);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.14), rgba(110, 207, 58, 0.12));
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.service-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-text {
  color: var(--muted);
  margin: 0 0 12px;
}

.service-link {
  font-weight: 850;
  color: var(--velka-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card:hover .service-link { color: var(--velka-blue-2); }

/* ===== Big Image CTA ===== */
.cta-image {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
}

.cta-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.03);
}

/* Overlay for readability + brand feel */
.cta-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 94, 168, 0.82), rgba(15, 29, 39, 0.70)),
    radial-gradient(circle at 80% 20%, rgba(110, 207, 58, 0.22), transparent 55%);
}

/* Content box */
.cta-image-box {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.cta-image-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.cta-image-text {
  color: rgba(255, 255, 255, 0.86);
  max-width: 72ch;
}

@media (max-width: 576px) {
  .cta-image {
    padding: 56px 0;
  }

  .cta-image-box {
    padding: 22px;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: #0b1520;
  color: rgba(255, 255, 255, 0.86);
  padding: 58px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-name {
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-sub {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 650;
  font-size: 0.92rem;
}

.footer-title {
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 60ch;
}

.footer-link {
  color: rgba(110, 207, 58, 0.95);
  font-weight: 850;
}

.footer-link:hover { color: #9af06b; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  transition: color 180ms ease;
}

.footer-links a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(110, 207, 58, 0.18);
  border-color: rgba(110, 207, 58, 0.25);
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.10);
  margin: 26px 0 18px;
}

.footer-mini {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 650;
  font-size: 0.92rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  body { padding-top: 74px; }

  .brand-logo { height: 40px; }

  .hero { padding: 76px 0 56px; }

  .hero-title { font-size: 2.2rem; }

  .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }

  .hero-trust { gap: 10px; }

  .trust-item {
    width: 100%;
    justify-content: flex-start;
  }

  .cta-box { padding: 22px; }
}



/* =========================================
   Velka Engineering Services - styles.css
   Shared styles + Home + About page
   ========================================= */

/* ---------- Brand Variables ---------- */
:root {
  --velka-blue: #0b5ea8;
  --velka-blue-2: #084f8d;
  --velka-green: #6ecf3a;
  --velka-teal: #2bb0a6;

  --ink: #0f1d27;          /* deep navy/charcoal */
  --text: #1f2a33;         /* body text */
  --muted: #667085;        /* muted text */
  --line: rgba(15, 29, 39, 0.10);

  --bg: #ffffff;
  --bg-soft: #f5f7fa;

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow-sm: 0 10px 24px rgba(15, 29, 39, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 29, 39, 0.14);

  --container-gap: 72px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 78px; /* fixed nav offset */
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.section-pad { padding: var(--container-gap) 0; }
.section-muted { background: var(--bg-soft); }

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.section-text {
  color: var(--muted);
  margin: 0;
  max-width: 68ch;
}

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, rgba(11, 94, 168, 0.12), rgba(110, 207, 58, 0.10));
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.topbar-left span {
  color: rgba(15, 29, 39, 0.72);
  font-size: 0.92rem;
}

.topbar-link {
  color: rgba(15, 29, 39, 0.78);
  font-weight: 600;
  font-size: 0.92rem;
}

.topbar-link:hover { color: var(--velka-blue); }

/* ---------- Navbar (LIGHT) ---------- */
.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 29, 39, 0.08);
}

.navbar {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.brand-text { line-height: 1.05; }

.brand-name {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: var(--ink);
}

.brand-tag {
  font-size: 0.8rem;
  color: rgba(15, 29, 39, 0.62);
  font-weight: 650;
}

.navbar .nav-link {
  color: var(--ink) !important;
  font-weight: 750;
  padding: 0.6rem 0.85rem !important;
  position: relative;
  transition: color 180ms ease;
}

.navbar .nav-link:hover { color: var(--velka-blue) !important; }
.navbar .nav-link.active { color: var(--velka-blue) !important; }

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  bottom: 0.28rem;
  width: calc(100% - 1.7rem);
  height: 2px;
  background: linear-gradient(90deg, var(--velka-blue), var(--velka-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

/* Optional: engineering accent line at navbar bottom */
.main-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--velka-blue), var(--velka-green));
  opacity: 0.55;
}

/* ---------- Buttons ---------- */
.btn-brand {
  background: linear-gradient(90deg, var(--velka-blue), var(--velka-teal));
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-brand:hover,
.btn-brand:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.03);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-ghost:hover,
.btn-ghost:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-outline-brand {
  border: 1.5px solid rgba(11, 94, 168, 0.35);
  color: var(--velka-blue);
  background: #fff;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  transform: translateY(-2px);
  border-color: rgba(11, 94, 168, 0.55);
  box-shadow: var(--shadow-sm);
}

.btn-link-brand {
  color: var(--velka-blue);
  font-weight: 850;
  padding: 0;
}
.btn-link-brand:hover { color: var(--velka-blue-2); }

/* =========================================================
   HOME PAGE (index.html)
   ========================================================= */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 86px 0 64px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 20% 25%, rgba(110, 207, 58, 0.20), transparent 45%),
              radial-gradient(circle at 80% 30%, rgba(43, 176, 166, 0.18), transparent 55%),
              linear-gradient(135deg, rgba(11, 94, 168, 0.92), rgba(15, 29, 39, 0.92));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 94, 168, 0.42), rgba(110, 207, 58, 0.16)),
    url("images/engineers.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: saturate(0.95) contrast(1.05) brightness(0.8);
  pointer-events: none;
}

/* blueprint grid vibe in hero */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    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: 22px 22px, 22px 22px, 110px 110px, 110px 110px;
  opacity: 0.48;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.hero-title {
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 14px;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}

.hero-accent {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.78));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 70ch;
  font-size: 1.08rem;
  margin: 0 0 20px;
}

.hero-cta .btn-lg {
  padding: 0.9rem 1.3rem;
  font-size: 1.02rem;
}

.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  font-size: 0.92rem;
}

.trust-item i { color: var(--velka-green); }

/* Hero Card */
.hero-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  position: relative;
}

/* technical corner marks */
.hero-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background:
    linear-gradient(var(--velka-green), var(--velka-green)) left top / 18px 2px no-repeat,
    linear-gradient(var(--velka-green), var(--velka-green)) left top / 2px 18px no-repeat,
    linear-gradient(var(--velka-teal), var(--velka-teal)) right top / 18px 2px no-repeat,
    linear-gradient(var(--velka-teal), var(--velka-teal)) right top / 2px 18px no-repeat,
    linear-gradient(var(--velka-teal), var(--velka-teal)) right bottom / 18px 2px no-repeat,
    linear-gradient(var(--velka-teal), var(--velka-teal)) right bottom / 2px 18px no-repeat,
    linear-gradient(var(--velka-green), var(--velka-green)) left bottom / 18px 2px no-repeat,
    linear-gradient(var(--velka-green), var(--velka-green)) left bottom / 2px 18px no-repeat;
  opacity: 0.33;
  pointer-events: none;
}

.hero-card-header {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 14px;
}

.hc-title { font-weight: 950; letter-spacing: -0.02em; font-size: 1.05rem; }
.hc-sub { color: rgba(255, 255, 255, 0.75); font-weight: 650; font-size: 0.92rem; }

.hero-list { list-style: none; padding: 0; margin: 0 0 14px; }

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  font-weight: 650;
}

.hero-list li:last-child { border-bottom: none; }
.hero-list i { color: var(--velka-green); margin-top: 3px; }

.hero-wave {
  height: 52px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.06));
  position: relative;
  margin-top: 44px;
}

/* ---------- Hero Image Strip (under hero) ---------- */
.hero-image-strip {
  position: relative;
  margin-top: -36px;
  z-index: 3;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.05);
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 29, 39, 0.05), rgba(15, 29, 39, 0.65)),
    radial-gradient(circle at 80% 20%, rgba(110, 207, 58, 0.18), transparent 55%),
    radial-gradient(circle at 20% 30%, rgba(11, 94, 168, 0.16), transparent 55%);
  z-index: 1;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-image-overlay {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.hero-image-caption {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 29, 39, 0.06);
  position: relative;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.14), rgba(110, 207, 58, 0.12));
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  flex: 0 0 44px;
}

.feature-title {
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 2px;
}
.feature-text {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.98rem;
}

/* ---------- Services Cards (Home) ---------- */
.service-card {
  display: block;
  height: 100%;
  padding: 22px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 29, 39, 0.10);
  box-shadow: 0 10px 26px rgba(15, 29, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(110, 207, 58, 0.18), transparent 45%),
              radial-gradient(circle at 80% 30%, rgba(43, 176, 166, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 94, 168, 0.22);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.14), rgba(110, 207, 58, 0.12));
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.service-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-text { color: var(--muted); margin: 0 0 12px; }

.service-link {
  font-weight: 900;
  color: var(--velka-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card:hover .service-link { color: var(--velka-blue-2); }

/* ---------- CTA Image (shared) ---------- */
.cta-image {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
}

.cta-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.03);
}

.cta-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 94, 168, 0.82), rgba(15, 29, 39, 0.70)),
    radial-gradient(circle at 80% 20%, rgba(110, 207, 58, 0.22), transparent 55%);
}

.cta-image-box {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.cta-image-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.cta-image-text {
  color: rgba(255, 255, 255, 0.86);
  max-width: 72ch;
}

/* ---------- Footer ---------- */
.footer {
  background: #0b1520;
  color: rgba(255, 255, 255, 0.86);
  padding: 58px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-name {
  font-weight: 950;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-sub {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-title {
  font-weight: 950;
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 60ch;
}

.footer-link {
  color: rgba(110, 207, 58, 0.95);
  font-weight: 900;
}
.footer-link:hover { color: #9af06b; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition: color 180ms ease;
}
.footer-links a:hover { color: #fff; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(110, 207, 58, 0.18);
  border-color: rgba(110, 207, 58, 0.25);
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.10);
  margin: 26px 0 18px;
}

.footer-mini {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
  font-size: 0.92rem;
}

/* =========================================================
   ABOUT PAGE (about.html) - NEW COMPONENTS
   ========================================================= */

/* ---------- About Page Hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  background: #0f1d27;
  color: #fff;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: contrast(1.06) saturate(1.06);
  transform: scale(1.03);
}

/* Overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 94, 168, 0.86), rgba(15, 29, 39, 0.70)),
    radial-gradient(circle at 80% 20%, rgba(110, 207, 58, 0.22), transparent 55%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.page-hero-title {
  font-weight: 980;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 12px;
}

.page-hero-lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 75ch;
  margin: 0;
  font-size: 1.05rem;
}

/* snapshot card */
.page-hero-card {
  border-radius: 22px;
  padding: 18px 18px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.phc-title {
  font-weight: 950;
  margin-bottom: 10px;
}

.phc-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.phc-row:last-child { border-bottom: none; }
.phc-row span { color: rgba(255, 255, 255, 0.68); font-weight: 750; }

/* ---------- About Media Card ---------- */
.about-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 29, 39, 0.10);
  box-shadow: var(--shadow-sm);
}

.about-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.06);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 29, 39, 0.05), rgba(15, 29, 39, 0.65)),
    radial-gradient(circle at 80% 20%, rgba(110, 207, 58, 0.18), transparent 55%);
  z-index: 1;
}

.about-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.about-media-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(12px);
  margin-bottom: 10px;
}

.about-media-caption {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
  max-width: 70ch;
}

/* ---------- Work Steps ---------- */
.work-steps {
  display: grid;
  gap: 14px;
}

.work-step {
  display: flex;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 29, 39, 0.10);
  box-shadow: 0 10px 26px rgba(15, 29, 39, 0.06);
}

.ws-num {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: var(--velka-blue);
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.14), rgba(110, 207, 58, 0.12));
  border: 1px solid rgba(11, 94, 168, 0.14);
  flex: 0 0 52px;
}

.ws-title {
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 2px;
}

.ws-text {
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* ---------- Mini Cards ---------- */
.mini-card {
  height: 100%;
  border-radius: 22px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(15, 29, 39, 0.10);
  box-shadow: 0 10px 26px rgba(15, 29, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mini-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.14), rgba(110, 207, 58, 0.12));
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.mini-title {
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 6px;
}

.mini-text {
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  body { padding-top: 74px; }

  .brand-logo { height: 50px; }

  .hero { padding: 76px 0 56px; }
  .hero-title { font-size: 2.2rem; }

  .hero-image-wrapper img { height: 340px; }
  .about-media img { height: 420px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }

  .hero-trust { gap: 10px; }
  .trust-item { width: 100%; justify-content: flex-start; }

  .cta-image { padding: 56px 0; }
  .cta-image-box { padding: 22px; }

  .page-hero { padding: 72px 0 48px; }
}


/* ========================
   Services Page
======================== */

.service-detail-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,29,39,0.08);
}

.service-detail-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-detail-text {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.service-detail-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  color: var(--text);
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--velka-green);
}



/* ========================
   Contact Page
======================== */

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 29, 39, 0.10);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 29, 39, 0.06);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.14), rgba(110, 207, 58, 0.12));
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  flex: 0 0 48px;
  font-size: 1.1rem;
}

.contact-label {
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-value {
  color: var(--muted);
  font-weight: 650;
}

a.contact-value:hover {
  color: var(--velka-blue);
}

.contact-form-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 29, 39, 0.10);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 29, 39, 0.08);
  overflow: hidden;
}

.cfc-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(15, 29, 39, 0.08);
  background: linear-gradient(90deg, rgba(11, 94, 168, 0.06), rgba(110, 207, 58, 0.06));
}

.cfc-title {
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 1.1rem;
}

.cfc-sub {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form-card form {
  padding: 18px;
}

.form-label {
  font-weight: 850;
  color: var(--ink);
  font-size: 0.92rem;
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid rgba(15, 29, 39, 0.14);
  padding: 0.78rem 0.9rem;
  font-weight: 600;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(11, 94, 168, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(11, 94, 168, 0.12);
}

.cfc-note {
  color: var(--muted);
  font-weight: 650;
  display: inline-flex;
  align-items: center;
}

.map-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 29, 39, 0.10);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 29, 39, 0.08);
  overflow: hidden;
}

.map-head {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(15, 29, 39, 0.08);
}

.map-title {
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 2px;
}

.map-sub {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.map-embed {
  width: 100%;
  height: 360px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ========================
   Request a Quote Page
======================== */

.quote-form-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 29, 39, 0.10);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 29, 39, 0.08);
  overflow: hidden;
}

.quote-help {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.quote-help-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 29, 39, 0.10);
  box-shadow: 0 10px 26px rgba(15, 29, 39, 0.06);
}

.quote-help-item i {
  color: var(--velka-green);
  font-size: 1.1rem;
  margin-top: 3px;
}

.qhi-title {
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 2px;
}

.qhi-text {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.quote-note {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 94, 168, 0.08);
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  font-weight: 850;
}

/* checkbox pills */
.quote-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 29, 39, 0.14);
  background: #fff;
  font-weight: 750;
  color: var(--ink);
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  user-select: none;
}

.check-pill input {
  width: 16px;
  height: 16px;
}

.check-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 94, 168, 0.35);
  box-shadow: 0 10px 22px rgba(15, 29, 39, 0.08);
}

.form-hint {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}


/* ========================
   Blog Page
======================== */

.blog-note {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 94, 168, 0.08);
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  font-weight: 850;
}

.blog-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 29, 39, 0.10);
  box-shadow: 0 12px 30px rgba(15, 29, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 94, 168, 0.22);
}

.blog-post-media {
  position: relative;
  overflow: hidden;
}

.blog-post-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 29, 39, 0.02), rgba(15, 29, 39, 0.18)),
    radial-gradient(circle at 82% 18%, rgba(110, 207, 58, 0.18), transparent 52%);
}

.blog-post-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}

.blog-post:hover .blog-post-media img {
  transform: scale(1.04);
}

.blog-post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.10), rgba(110, 207, 58, 0.12));
  border: 1px solid rgba(11, 94, 168, 0.14);
  color: var(--velka-blue);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.blog-post-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.blog-post-text {
  color: var(--muted);
  font-weight: 550;
  margin: 0 0 18px;
}

.blog-post-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 29, 39, 0.08);
  color: var(--velka-blue);
  font-weight: 800;
  font-size: 0.94rem;
}


/* ========================
   Thank You Page
======================== */

.thank-you-card {
  text-align: center;
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.thank-you-card .page-hero-badge {
  margin-bottom: 16px;
}

.thank-you-card .page-hero-lead {
  max-width: 62ch;
  margin: 0 auto;
}

.thank-you-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #9af06b;
  font-size: 1.8rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.thank-you-actions {
  margin-top: 24px;
}


/* ========================
   Site Refresh
======================== */

:root {
  --bg: #f5f8fc;
  --bg-soft: #edf3f8;
  --line: rgba(11, 26, 42, 0.09);
  --line-strong: rgba(11, 26, 42, 0.14);
  --shadow-soft: 0 22px 54px rgba(7, 18, 30, 0.08);
  --shadow-lift: 0 30px 80px rgba(7, 18, 30, 0.14);
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(110, 207, 58, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(11, 94, 168, 0.1), transparent 24%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 22%, #f3f7fb 100%);
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.page-hero-title,
.section-title,
.service-title,
.service-detail-title,
.mini-title,
.blog-post-title,
.footer-name,
.footer-title {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
}

.section-pad {
  position: relative;
  overflow: clip;
  padding: clamp(72px, 9vw, 108px) 0;
}

.section-pad > .container,
.footer > .container,
.cta-image > .container,
.hero > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.section-pad::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 176, 166, 0.14), transparent 70%);
  pointer-events: none;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(236, 243, 248, 0.92), rgba(249, 251, 253, 0.98));
}

.section-muted::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 94, 168, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 94, 168, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
  pointer-events: none;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.section-title::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--velka-blue), var(--velka-green));
  box-shadow: 0 12px 24px rgba(11, 94, 168, 0.18);
}

.section-text {
  color: #5d6878;
  font-size: 1.03rem;
  line-height: 1.8;
}

.topbar {
  background: linear-gradient(90deg, rgba(6, 19, 30, 0.96), rgba(13, 41, 63, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-left span,
.topbar-link {
  color: rgba(255, 255, 255, 0.78);
}

.topbar-link:hover {
  color: #ffffff;
}

.main-nav {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 44px rgba(15, 29, 39, 0.08);
}

.main-nav::after {
  height: 3px;
  opacity: 0.5;
}

.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.brand-logo {
  height: 62px;
  filter: drop-shadow(0 14px 24px rgba(11, 94, 168, 0.16));
}

.navbar-toggler {
  border: 1px solid rgba(11, 26, 42, 0.12);
  border-radius: 16px;
  padding: 0.52rem 0.68rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 94, 168, 0.12);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2811, 26, 42, 0.82%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .nav-link {
  isolation: isolate;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.navbar .nav-link::before {
  content: "";
  position: absolute;
  inset: 8px 6px;
  border-radius: 999px;
  background: rgba(11, 94, 168, 0.06);
  transform: scale(0.86);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
  z-index: -1;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
  transform: scale(1);
  opacity: 1;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn-brand {
  background: linear-gradient(135deg, #0b5ea8 0%, #1980ca 42%, #2bb0a6 100%);
  padding: 0.84rem 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 36px rgba(11, 94, 168, 0.2);
}

.btn-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.26) 45%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 600ms ease;
}

.btn-brand:hover::after,
.btn-brand:focus::after {
  transform: translateX(130%);
}

.btn-outline-brand {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(11, 94, 168, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-link-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 0 0.4rem;
  position: relative;
}

.btn-link-brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.35;
  transform: scaleX(0.46);
  transform-origin: left;
  transition: transform 180ms ease;
}

.btn-link-brand:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: clamp(106px, 11vw, 146px) 0 clamp(72px, 8vw, 100px);
  background:
    radial-gradient(circle at 18% 18%, rgba(110, 207, 58, 0.2), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(43, 176, 166, 0.18), transparent 32%),
    linear-gradient(135deg, #07121a 0%, #0a2c47 52%, #123852 100%);
}

.hero-bg {
  opacity: 0.42;
  filter: saturate(0.95) contrast(1.06) brightness(0.72);
}

.hero::after {
  opacity: 0.22;
}

.hero-title {
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  max-width: 9ch;
  line-height: 0.94;
  text-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.82;
}

.hero-badge,
.page-hero-badge {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-card,
.page-hero-card,
.thank-you-card,
.cta-image-box {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hero-card {
  padding: 24px 24px 20px;
}

.hero-list li {
  font-size: 0.97rem;
}

.hero-wave {
  height: 74px;
  margin-top: 58px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14));
  clip-path: ellipse(74% 100% at 50% 0%);
}

.page-hero {
  padding: clamp(100px, 10vw, 132px) 0 clamp(60px, 7vw, 88px);
  background: linear-gradient(135deg, #081722, #0f2436);
}

.page-hero-bg img {
  opacity: 0.34;
  filter: contrast(1.08) saturate(1.03) brightness(0.82);
}

.page-hero::before {
  background:
    linear-gradient(110deg, rgba(6, 18, 31, 0.92), rgba(11, 94, 168, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(110, 207, 58, 0.22), transparent 48%);
}

.page-hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  max-width: 10ch;
  line-height: 0.97;
}

.page-hero-lead {
  max-width: 58ch;
  line-height: 1.8;
}

.image-panel,
.about-media {
  border-radius: 30px;
  box-shadow: var(--shadow-lift);
}

.image-panel {
  min-height: 520px;
  background: #0e1c28;
  border: 1px solid rgba(11, 94, 168, 0.18);
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 29, 0.3), rgba(7, 19, 29, 0.82)),
    radial-gradient(circle at 80% 22%, rgba(110, 207, 58, 0.16), transparent 42%),
    url("images/image5.png") center / cover no-repeat;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.22;
}

.image-panel-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: none;
}

.image-panel-badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.image-panel-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.96;
  max-width: 8ch;
}

.image-panel-text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 34rem;
}

.stats-row {
  gap: 14px;
}

.stat {
  border-radius: 20px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.stat-num {
  color: #fff;
  font-size: 1.6rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.feature,
.service-card,
.mini-card,
.work-step,
.contact-card,
.quote-help-item,
.blog-post,
.map-card,
.contact-form-card,
.quote-form-card {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.feature,
.mini-card,
.work-step,
.contact-card,
.quote-help-item {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature:hover,
.mini-card:hover,
.work-step:hover,
.contact-card:hover,
.quote-help-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(11, 94, 168, 0.14);
}

.feature-icon,
.service-icon,
.mini-icon,
.contact-icon,
.ws-num {
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-card {
  padding: 24px 22px;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--velka-blue), var(--velka-green));
  opacity: 0.85;
}

.service-title,
.mini-title,
.ws-title,
.map-title,
.cfc-title {
  letter-spacing: -0.03em;
}

.cta-image {
  padding: clamp(76px, 9vw, 110px) 0;
}

.cta-image::before {
  background:
    linear-gradient(104deg, rgba(7, 22, 35, 0.9), rgba(11, 94, 168, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(110, 207, 58, 0.22), transparent 54%);
}

.cta-image-box {
  padding: clamp(24px, 4vw, 34px);
}

.cta-image-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.footer {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(110, 207, 58, 0.08), transparent 24%),
    linear-gradient(180deg, #07111a 0%, #091824 52%, #060d14 100%);
  padding: 68px 0 28px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(11, 94, 168, 0.15), rgba(110, 207, 58, 0.6), rgba(11, 94, 168, 0.15));
}

.footer-brand {
  display: inline-flex;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 52px;
  height: 52px;
}

.footer-text,
.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.form-control,
.form-select {
  min-height: 54px;
  background: rgba(244, 248, 252, 0.9);
  border: 1px solid rgba(11, 26, 42, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

textarea.form-control {
  min-height: 170px;
}

.form-control::placeholder {
  color: #8d99aa;
  font-weight: 500;
}

.contact-form-card form,
.quote-form-card form {
  padding: 22px;
}

.cfc-head,
.map-head {
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.08), rgba(43, 176, 166, 0.05));
}

.map-embed {
  height: 390px;
}

.quote-note,
.blog-note {
  background: rgba(11, 94, 168, 0.08);
  border-color: rgba(11, 94, 168, 0.12);
  color: var(--velka-blue);
}

.check-pill {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(11, 26, 42, 0.12);
}

.blog-post-media img,
.service-detail-img {
  box-shadow: var(--shadow-soft);
}

.service-detail-img {
  height: 460px;
  border-radius: 30px;
}

.service-detail-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.thank-you-card {
  padding: clamp(28px, 5vw, 42px);
}

@media (max-width: 991px) {
  .main-nav .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 26, 42, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .hero,
  .page-hero {
    padding-top: 92px;
  }

  .image-panel,
  .image-panel-inner {
    min-height: 420px;
  }

  .service-detail-img {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    height: 54px;
  }

  .section-title::after {
    margin-top: 12px;
  }

  .hero-title,
  .page-hero-title {
    max-width: none;
  }

  .hero-card,
  .page-hero-card,
  .cta-image-box,
  .thank-you-card {
    border-radius: 24px;
    padding: 22px;
  }

  .image-panel-inner {
    min-height: 360px;
    padding: 22px;
  }
}
