:root {
  --white: #ffffff;
  --paper: #f7f9fb;
  --soft-blue: #e5f5ff;
  --sky: #7fc9ed;
  --blue: #3867c8;
  --deep-blue: #16354b;
  --ink: #1e2931;
  --muted: #65717b;
  --line: rgba(22, 53, 75, 0.12);
  --grey: #eef2f5;
  --shadow: 0 26px 80px rgba(22, 53, 75, 0.13);
  --radius: 24px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.72;
  letter-spacing: 0.012em;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(56, 103, 200, 0.12);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-blue);
}

.logo-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 103, 200, 0.2);
  border-radius: 18px;
  background: #eef5fb;
  box-shadow: 0 12px 30px rgba(56, 103, 200, 0.18);
  flex-shrink: 0;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  background: #ffffff;
  display: block;
}

.logo-text,
.footer-logo {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 1.32rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.34em !important;
  text-transform: uppercase !important;
  color: #30333a !important;
  line-height: 1 !important;
}

.logo-text em {
  font-style: normal;
  color: #30333a !important;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-family: "Manrope", Arial, sans-serif !important;
  font-weight: 700 !important;
  color: #27313a !important;
  letter-spacing: 0.015em !important;
  transition: var(--transition);
  font-size: 16px !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #3367d6 !important;
}

.nav-cta {
  font-family: "Manrope", Arial, sans-serif !important;
  font-weight: 800 !important;
  padding: 12px 20px;
  background: var(--deep-blue);
  color: var(--white) !important;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(22, 53, 75, 0.2);
  letter-spacing: 0.01em !important;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--blue);
}

.nav-start {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.language-toggle,
.lang-switch {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(120, 170, 220, 0.35);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 42, 65, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  padding: 0;
}

.language-toggle:hover,
.lang-switch:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(15, 42, 65, 0.14);
  border-color: rgba(72, 128, 220, 0.55);
}

.language-toggle img,
.lang-switch img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--deep-blue);
  transition: var(--transition);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  padding-top: 96px;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=80");
}

.info-hero {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1800&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1600607687644-c7171b42498f?auto=format&fit=crop&w=1800&q=80");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 74% 28%,
      rgba(127, 201, 237, 0.18),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      rgba(7, 24, 35, 0.82),
      rgba(7, 24, 35, 0.5),
      rgba(255, 255, 255, 0.05)
    );
}

.hero-content,
.page-hero-content {
  padding-top: 40px;
  color: var(--white);
  max-width: 820px;
}

.eyebrow {
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.65rem, 6.5vw, 6.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.hero-text,
.page-hero p:last-child {
  margin-top: 26px;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
}

.hero-actions {
  margin-top: 34px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 44px !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.035em;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  width: auto !important;
  min-width: 300px;
  max-width: 100%;
}

.btn-primary {
  background: var(--sky);
  color: var(--deep-blue);
  box-shadow: 0 20px 48px rgba(127, 201, 237, 0.34);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--soft-blue);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--white);
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--grey);
  margin-top: 0 !important;
  padding-top: 36px !important;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey);
}

.trust-grid div {
  background: var(--white);
  padding: 30px 26px;
}

.trust-grid strong {
  display: block;
  font-size: 1.25rem;
  color: var(--deep-blue);
  letter-spacing: 0.01em;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 0.92fr 1fr;
}

.section-copy h2,
.section-heading h2,
.feature-panel h2,
.contact-panel h2,
.info-list h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--deep-blue);
  margin-bottom: 24px;
}

.section-copy p,
.feature-panel p,
.contact-panel p,
.info-list span,
.check-list li {
  color: var(--muted);
  margin-bottom: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--deep-blue);
  font-weight: 900;
  border-bottom: 2px solid var(--sky);
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 440px;
  position: relative;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 800ms ease;
}

.image-card:hover img {
  transform: scale(1.045);
}

.image-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--deep-blue);
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 44px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.process-card,
.contact-person-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(56, 103, 200, 0.16);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(22, 53, 75, 0.08);
  transition: var(--transition);
}

.service-card:hover,
.process-card:hover,
.contact-person-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.card-number,
.process-card span,
.contact-person-card span {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.service-card h3,
.process-card h3,
.contact-person-card h3 {
  color: var(--deep-blue);
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 12px;
  display: block;
}

.service-card p,
.process-card p,
.contact-person-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card.featured-card {
  background: linear-gradient(145deg, var(--deep-blue), var(--blue));
  color: var(--white);
}

.service-card.featured-card h3,
.service-card.featured-card .card-number {
  color: var(--white);
}

.service-card.featured-card p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-panel {
  background: linear-gradient(135deg, var(--deep-blue), #1d4a68);
  color: var(--white);
  border-radius: 34px;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  box-shadow: var(--shadow);
}

.feature-panel h2 {
  color: var(--white);
}

.feature-panel p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
}

.feature-panel.compact-panel {
  background: var(--white);
  color: var(--deep-blue);
  border: 1px solid rgba(56, 103, 200, 0.15);
  border-radius: 28px;
  padding: 28px 30px;
  width: min(900px, 100%);
  max-width: 900px;
  margin: 0 auto 70px;
  box-shadow: 0 24px 50px rgba(22, 53, 75, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}

.feature-panel.compact-panel h2 {
  color: var(--deep-blue);
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3.2vw, 2.35rem);
}

.feature-panel.compact-panel p {
  color: var(--muted);
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.72;
}

.feature-panel.compact-panel .eyebrow {
  color: var(--blue);
}

.feature-panel.compact-panel .btn-primary {
  min-height: 46px;
  padding: 0 24px;
  box-shadow: 0 16px 36px rgba(56, 103, 200, 0.18);
}

.feature-panel.compact-panel > * {
  flex: 1 1 280px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.info-list {
  background: var(--paper);
  border-radius: 34px;
  padding-left: 44px;
  padding-right: 44px;
}

.info-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-list-grid div {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(56, 103, 200, 0.16);
}

.info-list-grid strong {
  display: block;
  color: var(--deep-blue);
  margin-bottom: 5px;
}

.check-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blue);
  font-weight: 900;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.detail-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(56, 103, 200, 0.14);
}

.detail-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.detail-card div {
  padding: 30px;
}

.detail-card h2 {
  color: var(--deep-blue);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.detail-card p {
  color: var(--muted);
}

.wide-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
}

.wide-card img {
  height: 100%;
  min-height: 340px;
}

.contact-person-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(135deg, var(--white), var(--soft-blue));
}

.contact-person-card h3 {
  font-size: 2.25rem;
  letter-spacing: 0.01em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  background: var(--white);
  border: 1px solid rgba(56, 103, 200, 0.14);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-form {
  margin-top: 30px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  color: var(--deep-blue);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.two-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(22, 53, 75, 0.14);
  background: var(--paper);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(127, 201, 237, 0.18);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.hidden,
.other-job-field {
  display: none;
}

.other-job-field.show {
  display: block;
}

.form-button {
  border: 0;
  width: 100%;
}

.form-message {
  margin-top: 14px;
  font-weight: 800;
}

.form-message.success {
  color: #207b46;
}

.form-message.error {
  color: #b42318;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-box {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  padding: 26px;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(56, 103, 200, 0.2);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.contact-box::before {
  display: none !important;
  content: none !important;
}

.contact-box:hover {
  transform: translateY(-8px);
  background: #315ec0;
  box-shadow: 0 26px 62px rgba(56, 103, 200, 0.3);
}

.contact-box span {
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.contact-box strong,
.contact-box a {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.35;
  margin-bottom: 10px;
  font-weight: 800;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer {
  background: #0f2533;
  color: rgba(255, 255, 255, 0.76);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.95fr 0.95fr;
  gap: 40px;
}

.footer-logo,
.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer h4 {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.footer a,
.footer span,
.footer li {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer ul {
  list-style: none;
}

.footer li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 8px;
}

.footer li::before {
  content: "✓";
  color: var(--sky);
  margin-right: 8px;
  font-weight: 900;
}

.footer a:hover {
  color: var(--sky);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.back-to-top:hover {
  color: #7cc8ee;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(56, 103, 200, 0.16);
    border-radius: 22px;
    box-shadow: var(--shadow);
    z-index: 10;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 44px !important;
  }

  .container {
    width: min(100%, calc(100% - 28px));
  }

  .trust-grid,
  .cards-grid,
  .cards-grid.three,
  .process-grid,
  .service-detail-grid,
  .contact-layout,
  .footer-grid,
  .info-list-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero,
  .page-hero {
    padding-top: 88px;
  }

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

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 18px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .nav-links a {
    font-family: "Manrope", Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .hero,
  .page-hero {
    min-height: 84vh;
  }

  .logo-text,
  .footer-logo {
    font-size: 1.12rem;
    letter-spacing: 0.08em;
  }

  .trust-grid,
  .cards-grid,
  .cards-grid.three,
  .process-grid,
  .service-detail-grid,
  .contact-layout,
  .footer-grid,
  .info-list-grid,
  .two-fields {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .section {
    padding: 64px 0;
  }

  .feature-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .feature-panel.compact-panel {
    width: 100%;
    max-width: 100%;
    padding: 22px;
    margin-bottom: 42px;
  }

  .feature-panel.compact-panel h2 {
    font-size: clamp(1.7rem, 5vw, 2.1rem);
  }

  .feature-panel.compact-panel p {
    max-width: 100%;
  }

  .contact-panel,
  .info-list {
    padding: 24px;
  }

  .contact-layout {
    gap: 22px;
  }

  .two-fields {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 50px 0 24px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 18px));
  }

  .site-header {
    padding: 18px 0;
  }

  .navbar {
    gap: 12px;
  }

  .nav-start {
    gap: 10px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 40px;
  }

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

  .hero h1,
  .page-hero h1 {
    font-size: 2.3rem;
  }

  .hero-text,
  .page-hero p:last-child {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .trust-grid,
  .cards-grid,
  .cards-grid.three,
  .process-grid,
  .service-detail-grid,
  .contact-layout,
  .footer-grid,
  .info-list-grid,
  .two-fields,
  .two-column,
  .two-column.reverse,
  .wide-card {
    grid-template-columns: 1fr;
  }

  .detail-card img,
  .wide-card img {
    height: auto;
    min-height: 220px;
  }

  .contact-person-card {
    min-height: auto;
    padding: 30px 20px;
  }

  .contact-panel,
  .info-list,
  .feature-panel,
  .feature-panel.compact-panel {
    padding: 20px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .feature-panel.compact-panel {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 22px !important;
    padding: 28px 20px !important;
    margin-bottom: 56px !important;
  }

  .feature-panel.compact-panel > * {
    flex: 0 0 auto !important;
    min-width: 0 !important;
  }

  .feature-panel.compact-panel .btn,
  .feature-panel.compact-panel .btn-primary {
    width: auto !important;
    max-width: 260px !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 46px !important;
    padding: 13px 24px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: flex-start !important;
    aspect-ratio: auto !important;
    white-space: nowrap !important;
  }
}

/* Hero CTA Buttons - Desktop Spacing */
.hero-cta-buttons {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 70px !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  margin-top: 42px !important;
  margin-bottom: 56px !important;
}

.hero-cta-buttons .btn {
  width: auto !important;
  min-width: 340px !important;
  max-width: 420px !important;
  height: auto !important;
  min-height: 58px !important;
  padding: 18px 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
}

/* Hero CTA Buttons - Mobile */
@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
    margin-top: 30px !important;
    margin-bottom: 38px !important;
  }

  .hero-cta-buttons .btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  .trust-strip {
    padding-top: 28px !important;
    margin-top: 0 !important;
  }

  .logo-text,
  .footer-logo {
    font-size: 1.1rem !important;
    letter-spacing: 0.28em !important;
  }
}

@media (max-width: 480px) {
  .logo-text,
  .footer-logo {
    font-size: 0.9rem !important;
    letter-spacing: 0.22em !important;
  }
}

/* Contact Button - Ensure White Text */
.nav-cta,
.nav-contact,
.contact-link,
.nav-links a.nav-cta,
.nav-links a.contact-link {
  color: #ffffff !important;
}

.nav-cta:hover,
.nav-contact:hover,
.contact-link:hover,
.nav-links a.nav-cta:hover,
.nav-links a.contact-link:hover {
  color: #ffffff !important;
}

.nav-cta.active,
.nav-contact.active,
.contact-link.active,
.nav-links a.nav-cta.active,
.nav-links a.contact-link.active {
  color: #ffffff !important;
}


/* Footer brand visibility fix */
.footer .footer-logo,
footer .footer-logo {
  color: #ffffff !important;
  opacity: 1 !important;
}

.footer .footer-logo:hover,
footer .footer-logo:hover {
  color: #ffffff !important;
}


/* Work locations section on services page */
.work-locations-section {
  padding-top: 20px;
}

.work-locations-section .section-heading {
  max-width: 820px;
}

.work-locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.work-location-card {
  min-height: 150px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(56, 103, 200, 0.16);
  box-shadow: 0 18px 45px rgba(22, 53, 75, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.work-location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.work-location-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.work-location-card strong {
  color: var(--deep-blue);
  font-size: 1.15rem;
  line-height: 1.25;
}

@media (max-width: 992px) {
  .work-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .work-locations-grid {
    grid-template-columns: 1fr;
  }

  .work-location-card {
    min-height: 110px;
  }
}

/* Footer brand visibility: only footer logo */
.footer .footer-logo,
footer .footer-logo {
  color: #ffffff !important;
  opacity: 1 !important;
}


/* Last requested refinements */
.section-heading .eyebrow[data-i18n="about.special.eyebrow"] {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  letter-spacing: 0.18em;
}

.contact-person-card {
  min-height: 220px !important;
  max-width: 520px;
  width: 100%;
  justify-self: center;
  justify-content: center !important;
  padding: 28px !important;
}

.contact-person-card h3 {
  font-size: clamp(1.9rem, 2.8vw, 2.35rem);
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .logo,
html[dir="rtl"] .logo-text,
html[dir="rtl"] .footer-logo,
html[dir="rtl"] .phone-number,
html[dir="rtl"] .brand-name {
  direction: ltr;
}

html[dir="rtl"] .nav-start,
html[dir="rtl"] .navbar,
html[dir="rtl"] .hero-cta-buttons,
html[dir="rtl"] .footer-bottom {
  direction: rtl;
}

html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"] {
  direction: ltr;
  text-align: right;
}

@media (max-width: 768px) {
  .contact-person-card {
    max-width: 100%;
    min-height: auto !important;
    padding: 24px 20px !important;
  }
}

/* Final language dropdown */
.language-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1200;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 190px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(56, 103, 200, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 60px rgba(22, 53, 75, 0.16);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.language-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.language-option {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--deep-blue);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.language-option:hover,
.language-option.active {
  background: rgba(127, 201, 237, 0.18);
  color: var(--blue);
}

.language-option:active {
  transform: scale(0.98);
}

.language-option img {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

html[dir="rtl"] .language-option {
  text-align: right;
}

/* Make this eyebrow more visible on the homepage */
.section-heading .eyebrow[data-i18n="index.section2.eyebrow"] {
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  line-height: 1.45;
  letter-spacing: 0.2em;
}

/* Use the same deep blue gradient as the highlighted card for contact boxes */
.contact-box {
  background: linear-gradient(145deg, var(--deep-blue), var(--blue)) !important;
}

.contact-box:hover {
  background: linear-gradient(145deg, #123047, #315ec0) !important;
}

@media (max-width: 680px) {
  .language-menu {
    left: auto;
    right: 0;
    transform: translateY(8px);
    min-width: 176px;
  }

  .language-menu.open {
    transform: translateY(0);
  }

  .section-heading .eyebrow[data-i18n="index.section2.eyebrow"] {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }
}

/* Compact footer contact spacing */
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .footer-contact-details a,
.footer .footer-contact-details span,
footer .footer-contact-details a,
footer .footer-contact-details span {
  display: block;
  margin-bottom: 0 !important;
  line-height: 1.35;
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


/* Final cleanup: remove separator lines in the trust strip and keep the updated logo clean */
.trust-grid {
  gap: 0 !important;
  background: transparent !important;
}

.trust-grid div {
  border: 0 !important;
}

.trust-strip {
  border-bottom: 0 !important;
}

.logo-mark img {
  object-fit: contain !important;
  padding: 4px !important;
  background: #ffffff !important;
}


/* Final cleanup: remove the light-blue vertical lines from contact information boxes only */
.contact-sidebar .contact-box {
  border-left: 0 !important;
}

.contact-sidebar .contact-box::before,
.contact-sidebar .contact-box::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  background: transparent !important;
}

