@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #eef4ff;
  --text: #122033;
  --text-muted: #47607e;
  --accent: #d62828;
  --accent-2: #0d3b78;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', Arial, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
main { padding: 0; }
.section { max-width: 100%; margin: 0; }

/* header, nav, footer: same as aboutstyle.css */
.site-header { position: sticky; top: 0; z-index: 1200; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(13,59,120,.10); box-shadow: 0 8px 24px rgba(13,59,120,.06); }
.header-container { max-width: 1250px; margin: 0 auto; min-height: 78px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: #0d3b78; color: #fff; font-weight: 800; font-size: .95rem; border: 2px solid var(--accent); box-shadow: 0 10px 20px rgba(13,59,120,.12); }
.brand-text { color: #0d3b78; font-size: 1rem; font-weight: 800; letter-spacing: .02em; }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a { color: #35557e; text-decoration: none; font-size: .98rem; font-weight: 500; transition: color .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: #0d3b78; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 12px; text-decoration: none; background: var(--accent); color: #fff; font-weight: 700; box-shadow: 0 10px 24px rgba(214,40,40,.18); transition: transform .25s ease, box-shadow .25s ease; }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.05); color: #fff; border: 1px solid rgba(255,255,255,.10); box-shadow: var(--shadow); backdrop-filter: blur(10px); cursor: pointer; font-size: 24px; padding: 0; }
.top-menu { position: fixed; top: 0; left: -270px; width: 250px; height: 100dvh; background: rgba(10,16,28,.96); color: #fff; padding: 80px 20px 20px; box-sizing: border-box; transition: left .3s ease; z-index: 1300; border-right: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.top-menu.show { left: 0; }
.top-menu .logo { font-size: 1.1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 30px; }
.top-menu ul { list-style: none; padding: 0; margin: 0; }
.top-menu ul li { margin-bottom: 20px; }
.top-menu ul li a { color: var(--text-muted); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color .25s ease, transform .25s ease; }
.top-menu ul li a:hover, .top-menu ul li a.active { color: var(--accent); transform: translateX(4px); }
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); display: none; z-index: 1250; }
.menu-overlay.show { display: block; }

/* services page */
.services-page { width: 100%; margin: 0; padding: 90px 24px 70px; background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%); }
.services-shell { max-width: 1250px; margin: 0 auto; }
.services-page h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: #0d3b78; margin: 0 0 16px; }
.services-page p { color: #334a68; line-height: 1.8; }

.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin: 36px 0 36px; }
.service-card { background: #fff; border: 1px solid rgba(13,59,120,.10); border-radius: 16px; padding: 24px; box-shadow: 0 10px 26px rgba(13,59,120,.08); }

.service-list-block,
.process-steps,
.services-cta {
  background: #fff;
  border: 1px solid rgba(13,59,120,.10);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(13,59,120,.08);
  margin-bottom: 28px;
}

.steps-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.step { background: #fff; border: 1px solid rgba(13,59,120,.10); border-radius: 16px; padding: 20px; box-shadow: 0 10px 24px rgba(13,59,120,.08); }

.services-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* buttons/footer/lightbox */
.btn-primary,
.btn-secondary,
.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary, .video-link { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.btn-secondary { background: rgba(13,59,120,.08); color: #0d3b78; border: 1px solid rgba(13,59,120,.12); }

.footer-container { max-width: 1250px; margin: 0 auto; padding: 56px 24px 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer { margin-top: 80px; background: linear-gradient(180deg, #121826 0%, #0a0f18 100%); color: #eaf1ff; border-top: 1px solid rgba(255,255,255,.08); }

/* same footer/review styles as aboutstyle.css */
.footer-brand h2, .footer-links h3, .footer-social h3, .footer-reviews h3 { margin-bottom: 16px; color: #fff; }
.footer-brand p { color: #aebbd6; line-height: 1.8; max-width: 420px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a, .social-links a { color: #b8c6e3; text-decoration: none; transition: color .25s ease, transform .25s ease; }
.footer-links a:hover, .social-links a:hover { color: var(--accent); transform: translateX(4px); }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 16px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 24px; text-align: center; }
.footer-bottom p { margin: 0; color: #8fa1c4; font-size: .95rem; }

.footer-reviews h3 { margin-bottom: 16px; color: #fff; font-size: 1.45rem; }
.google-review-badge,
.google-review-badge:link,
.google-review-badge:visited {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(251,188,5,.22);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  color: #fff;
}
.google-stars { font-size: 1.2rem; letter-spacing: .08em; color: #fbbc05; line-height: 1; }
.google-review-text { color: #eef4ff; line-height: 1.35; font-weight: 700; }
.google-review-text small { display: block; margin-top: 2px; font-size: .82rem; color: #9fb0cf; font-weight: 500; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

.lang-link {
  text-decoration: none;
  font-weight: 700;
  color: #35557e;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.lang-link:hover {
  background: rgba(13, 59, 120, 0.08);
  color: #0d3b78;
}

.lang-link.active {
  background: #0d3b78;
  color: #ffffff;
}

.lang-divider {
  color: #9fb0cf;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
/* responsive */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 88px;
  height: 46px;
  padding: 0 12px;
  border-radius: 14px;
  background: #0d3b78;
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
  .header-container {
    min-height: 74px;
    padding: 0 16px;
  }

  .brand-text {
    font-size: .95rem;
  }

  .services-page {
    padding: 70px 16px 60px;
  }

  .services-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }

  .services-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 16px 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .social-links {
    gap: 10px;
  }

  .top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 78vw;
    max-width: 320px;
    height: 100dvh;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .top-menu.show {
    transform: translateX(0);
  }

  .menu-overlay {
    inset: 0;
    width: 100vw;
    max-width: 100vw;
  }
}

@media (max-width: 600px) {
  .services-page h1 {
    font-size: 2rem;
  }

  .services-grid {
    gap: 16px;
  }
}