:root {
  --bg: #f4f8fc;
  --bg-soft: #eef5fb;
  --surface: #ffffff;
  --ink: #16324e;
  --muted: #60758e;
  --line: #d7e3ef;
  --blue: #0b5f99;
  --blue-2: #0d76b5;
  --cyan: #15c3c6;
  --accent: #ffb03b;
  --shadow: 0 18px 40px rgba(18, 49, 81, 0.08);
  --radius: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-optical-sizing: auto;
  background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 220px);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-shell { min-height: 100vh; }

.topbar {
  background: #093f6b;
  color: #eaf4ff;
  font-size: 14px;
}
.topbar__inner,
.announcement__inner,
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar__inner { min-height: 34px; padding: 6px 0; }
.topbar__group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.topbar__group strong { font-weight: 700; }

.announcement {
  background: #eef5fb;
  color: #1d4165;
  border-bottom: 1px solid rgba(22, 50, 78, 0.08);
}
.announcement__inner { min-height: 36px; padding: 4px 0; }
.announcement p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}
.announcement__close {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(22, 50, 78, 0.08);
}
.header__inner { min-height: 84px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.brand .custom-logo-link { display: inline-flex; }
.brand .custom-logo { height: 42px; width: auto; }
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(22, 50, 78, 0.08);
  box-shadow: var(--shadow);
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand__text { font-size: 1.02rem; }
.brand--footer .brand__mark { background: #fff; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #d5e2f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 8px 18px rgba(16, 56, 93, 0.08);
}
.nav-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2.5px;
  margin: 0;
  border-radius: 99px;
  background: #34475c;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease, background 0.18s ease;
}
.nav-toggle:hover > span:not(.screen-reader-text),
.nav-toggle:focus-visible > span:not(.screen-reader-text) {
  background: #0b5f99;
}
.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  flex: 1;
}
.site-nav__header,
.site-nav__footer,
.nav-overlay {
  display: none;
}
.site-nav__brand {
  display: grid;
  gap: 2px;
}
.site-nav__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.main-menu > li { position: relative; }
.main-menu > li > a {
  font-weight: 700;
  color: var(--ink);
  padding: 10px 0;
}
.submenu-toggle {
  display: none;
}
.menu-item-has-children > a::after {
  content: "\25BE";
  margin-left: 6px;
  font-size: 0.8em;
}
.sub-menu {
  list-style: none;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 460px;
  margin: 0;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  column-gap: 8px;
}
.main-menu > li:hover > .sub-menu { display: grid; gap: 6px; }
.sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
}
.sub-menu a:hover { background: var(--bg-soft); }

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.section,
.hero {
  padding: 72px 0;
}
.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(21, 195, 198, 0.12), transparent 32%),
    linear-gradient(180deg, #f5f9fd 0%, #eef5fb 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: #0a5890;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1,
.section-head h2,
.about__content h2,
.process__copy h2,
.contact__copy h2,
.page-card h1,
.post-card h2 {
  margin: 0;
  line-height: 1.08;
  font-family: "Noto Serif Display", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}
.hero h1 {
  display: grid;
  gap: 8px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}
.hero__lead {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-search {
  margin-top: 24px;
  max-width: 560px;
}
.hero-search__form {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-search__form input {
  flex: 1;
  min-height: 56px;
  border: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
}
.hero-search__form button {
  width: 64px;
  border: 0;
  background: var(--blue-2);
  color: #fff;
  display: grid;
  place-items: center;
}
.hero-search__form svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-search__chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-search__chips a,
.logo-marquee__item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
}
.hero-search__chips a {
  padding: 9px 14px;
  font-weight: 700;
  color: var(--ink);
}
.hero__stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
}
.stat,
.service-card,
.timeline__item,
.about__counter,
.contact-form,
.page-card,
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat { padding: 18px; }
.stat strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.stat span { color: var(--muted); }

.hero__visual {
  position: relative;
  min-height: 560px;
}
.hero-collage {
  position: absolute;
  inset: 80px 0 0;
}
.hero-collage__image {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(17, 49, 80, 0.18);
  object-fit: cover;
  --hero-rotate: 0deg;
}
.float-bob-x {
  animation: floatBobX 7s ease-in-out infinite;
}
.float-bob-y {
  animation: floatBobY 6.5s ease-in-out infinite;
}
.float-bob-x2 {
  animation: floatBobX2 8s ease-in-out infinite;
}
.hero-collage__image--one {
  right: 15%;
  top: 0;
  width: min(68%, 300px);
  aspect-ratio: 239 / 263;
  --hero-rotate: 2deg;
  animation: floatBobX 7.5s ease-in-out infinite;
}
.hero-collage__image--two {
  left: 6%;
  top: 110px;
  width: min(64%, 290px);
  aspect-ratio: 292 / 314;
  --hero-rotate: -3deg;
  animation: floatBobX2 8.5s ease-in-out infinite;
}
.hero-collage__image--three {
  right: 2%;
  bottom: 0;
  width: min(74%, 340px);
  aspect-ratio: 346 / 376;
  animation: floatBobY 7.2s ease-in-out infinite;
}
.hero__plane,
.hero__marker,
.hero__swash {
  position: absolute;
  pointer-events: none;
}
.hero__plane {
  top: 22px;
  left: 0;
  width: 180px;
  opacity: 0.8;
  animation: floatBobX2 9s ease-in-out infinite;
}
.hero__marker {
  top: 10px;
  right: 14px;
  width: 36px;
  animation: floatBobY 6s ease-in-out infinite;
}
.hero__swash {
  left: 0;
  bottom: 16px;
  width: 140px;
  opacity: 0.92;
}
.hero-badge {
  position: absolute;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(215, 227, 239, 0.95);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(17, 49, 80, 0.12);
  z-index: 2;
}
.hero-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.hero-badge strong { font-size: 1.05rem; }
.hero-badge--top { top: 52px; right: 4%; }
.hero-badge--bottom { left: 16px; bottom: 80px; }
.hero-badge--top,
.hero-badge--bottom {
  animation: floatBobY 6.8s ease-in-out infinite;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.section-head--center {
  align-items: center;
  text-align: center;
}
.section-head h2,
.about__content h2,
.process__copy h2,
.contact__copy h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}
.section-head p,
.about__content > p,
.process__copy > p,
.contact__copy > p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  overflow: hidden;
}
.service-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.service-card__body {
  padding: 22px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 14px;
  align-items: center;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  margin-bottom: 0;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 0;
  font-size: 1.16rem;
}
.service-card p {
  grid-column: 1 / -1;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}
.service-card ul,
.check-list,
.contact-list,
.footer-list,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}
.service-card .card-link {
  grid-column: 1 / -1;
}
.service-card li,
.check-list li,
.contact-list li,
.footer-list li {
  position: relative;
  color: var(--ink);
  line-height: 1.6;
}
.service-card li { padding-left: 18px; }
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10a57f;
  font-weight: 800;
}
.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

.section--dark {
  background: linear-gradient(180deg, #173756 0%, #12324f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 35%);
}
.section--dark .eyebrow,
.section--dark .process-band__content p,
.section--dark .process-step__body p {
  color: rgba(255, 255, 255, 0.84);
}
.section--dark .process-band__note span {
  color: var(--muted);
}
.process-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.process-band__visual {
  position: relative;
  min-height: 560px;
}
.process-band__main,
.process-band__secondary {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(8, 22, 38, 0.32);
}
.process-band__main {
  left: 14%;
  top: 30px;
  width: min(72%, 340px);
  aspect-ratio: 394 / 486;
}
.process-band__secondary {
  left: 0;
  bottom: 28px;
  width: min(54%, 250px);
  aspect-ratio: 289 / 321;
}
.process-band__shape {
  position: absolute;
  right: 10px;
  top: 0;
  width: 210px;
  opacity: 0.28;
}
.process-band__note {
  position: absolute;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(8, 22, 38, 0.18);
  max-width: 220px;
}
.process-band__note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}
.process-band__note span {
  color: var(--muted);
  line-height: 1.5;
}
.process-band__note--top {
  right: 4%;
  top: 44px;
}
.process-band__note--bottom {
  right: 5%;
  bottom: 54px;
}
.process-band__content {
  position: relative;
  z-index: 1;
}
.process-band__content > p {
  max-width: 60ch;
}
.process-steps {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}
.process-step__num {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ffd36b);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
}
.process-step__body h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.18rem;
}
.process-step__body p {
  margin: 0;
  line-height: 1.7;
}
.process-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.process-stat {
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.process-stat strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 4px;
}
.process-stat span {
  color: rgba(255, 255, 255, 0.82);
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}
.about__content .btn { margin-top: 20px; }
.check-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.check-list li {
  padding-left: 22px;
}
.check-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  position: absolute;
  left: 0;
  top: 8px;
}
.about__media {
  position: relative;
  min-height: 560px;
}
.about__image {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17, 49, 80, 0.16);
}
.about__image--small {
  width: min(52%, 290px);
  left: 0;
  top: 18px;
}
.about__image--large {
  width: min(64%, 390px);
  right: 12px;
  bottom: 0;
}
.about__counter {
  position: absolute;
  left: 46%;
  top: 18%;
  transform: translateX(-50%);
  padding: 18px 22px;
  text-align: center;
  z-index: 2;
}
.about__counter strong {
  display: block;
  font-size: 2rem;
}
.about__counter span {
  color: var(--muted);
}
.about__shape {
  position: absolute;
  pointer-events: none;
}
.about__shape--one {
  right: 0;
  top: 0;
  width: 180px;
  opacity: 0.18;
}
.about__shape--two {
  left: 0;
  bottom: 12px;
  width: 120px;
  opacity: 0.18;
}

.section--soft { background: var(--bg); }
.logo-marquee {
  overflow: hidden;
  margin-top: 10px;
}
.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.logo-marquee__item {
  min-width: 150px;
  height: 72px;
  padding: 12px 20px;
  display: grid;
  place-items: center;
}
.logo-marquee__item img {
  max-height: 38px;
  width: auto;
}

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

.testimonials {
  background: linear-gradient(180deg, #fff 0%, #f6fafc 100%);
}
.testimonial-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.testimonial-head h2 {
  margin-top: 4px;
}
.testimonial-head__link {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.testimonial-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 22px rgba(18, 49, 81, 0.16);
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__meta strong {
  display: block;
  margin-bottom: 4px;
}
.testimonial-card__meta span {
  color: var(--muted);
  font-size: 0.92rem;
}
.testimonial-card__stars {
  margin-top: 4px;
  color: #f2b01e;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.testimonial-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.72;
}
.testimonial-card__footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
.testimonial-card__source {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.contact-list li {
  display: grid;
  gap: 4px;
}
.contact-list strong {
  display: inline-block;
  min-width: 48px;
  font-weight: 800;
  color: var(--blue);
}
.contact-list span {
  color: var(--ink);
}
.contact-list a {
  color: var(--ink);
  font-weight: 700;
}
.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}
.notice--success {
  background: rgba(21, 195, 198, 0.12);
  color: #0d6f63;
  border: 1px solid rgba(21, 195, 198, 0.2);
}
.notice--error {
  background: rgba(226, 79, 79, 0.1);
  color: #a63e3e;
  border: 1px solid rgba(226, 79, 79, 0.18);
}
.contact-form {
  padding: 22px;
}
.contact-form__missing {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.contact-form--wpforms .wpforms-container,
.contact-form--wpforms .wpforms-container-full,
.contact-form--wpforms .wpforms-form {
  margin: 0;
  max-width: none !important;
}
.contact-form--wpforms .wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-form--wpforms .wpforms-field {
  margin: 0 !important;
  padding: 0 !important;
}
.contact-form--wpforms .wpforms-field.viettrip-full {
  grid-column: 1 / -1;
}
.contact-form--wpforms .wpforms-field-label {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.94rem !important;
  font-weight: 700 !important;
}
.contact-form--wpforms input.wpforms-field-medium,
.contact-form--wpforms input.wpforms-field-small,
.contact-form--wpforms input.wpforms-field-large,
.contact-form--wpforms textarea.wpforms-field-medium,
.contact-form--wpforms textarea.wpforms-field-small,
.contact-form--wpforms textarea.wpforms-field-large {
  width: 100% !important;
  max-width: none !important;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
}
.contact-form--wpforms textarea.wpforms-field-medium,
.contact-form--wpforms textarea.wpforms-field-small,
.contact-form--wpforms textarea.wpforms-field-large {
  min-height: 132px;
  resize: vertical;
}
.contact-form--wpforms .wpforms-submit-container {
  margin: 16px 0 0 !important;
  padding: 0 !important;
}
.contact-form--wpforms .wpforms-submit {
  min-height: 48px !important;
  padding: 0 18px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--blue), #114f82) !important;
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow: var(--shadow);
}
.contact-form--wpforms .wpforms-confirmation-container-full {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(21, 195, 198, 0.2);
  background: rgba(21, 195, 198, 0.12);
  color: #0d6f63;
  border-radius: 16px;
}
.contact-form--service .wpforms-field-container {
  grid-template-columns: 1fr;
}
.contact-form--service .wpforms-field.viettrip-full,
.contact-form--service .wpforms-field.viettrip-half {
  grid-column: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.form-grid__full { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 8px;
}
label span {
  font-size: 0.94rem;
  font-weight: 700;
}
input, textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
}
textarea {
  min-height: 132px;
  resize: vertical;
}

.btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue), #114f82);
  color: #fff;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #234f86;
  color: rgba(255, 255, 255, 0.92);
}
.site-footer a {
  color: #ffd24d;
}
.footer__company {
  padding: 42px 0 34px;
}
.company-info {
  max-width: 900px;
}
.company-info__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.3;
  text-transform: uppercase;
}
.company-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.company-info__item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.02rem;
  line-height: 1.6;
}
.company-info__item strong {
  color: #fff;
}
.company-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.company-info__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 0.9fr;
  gap: 20px;
  padding: 44px 0;
  align-items: start;
}
.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1.06rem;
}
.footer-list,
.footer-menu {
  display: grid;
  gap: 10px;
}
.footer__bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.page-card,
.post-card {
  padding: 22px;
}
.service-hero-section {
  padding-bottom: 24px;
}
.service-body-section {
  padding-top: 0;
}
.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}
.service-hero__copy,
.service-hero__visual,
.service-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.service-hero__copy {
  padding: 30px;
}
.service-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}
.service-breadcrumbs a {
  color: var(--blue);
  font-weight: 700;
}
.service-journal {
  width: min(100% - 32px, var(--container));
  margin: 24px auto 0;
  overflow: hidden;
  background: #16b8d5;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.service-journal img {
  width: 100%;
  height: auto;
  display: block;
}
.service-breadcrumb-strip {
  margin: 0 0 26px;
  padding: 10px 0 12px;
  background: #fff;
  border-bottom: 1px solid rgba(22, 50, 78, 0.06);
}
.service-breadcrumb-strip .container {
  display: flex;
  justify-content: center;
}
.service-breadcrumbs--compact {
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.service-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.08;
  font-family: "Noto Serif Display", Georgia, "Times New Roman", serif;
}
.service-summary {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.service-actions .btn:not(.btn--primary) {
  color: var(--blue);
  border-color: var(--line);
  background: #fff;
}
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.service-pills span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  font-weight: 700;
}
.service-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.service-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-width: 180px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(9, 63, 107, 0.92);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.service-hero__badge p,
.service-hero__badge strong {
  margin: 0;
}
.service-hero__badge p {
  font-size: 0.84rem;
  opacity: 0.85;
}
.service-hero__badge strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: start;
}
.service-main,
.service-sidebar {
  display: grid;
  gap: 18px;
}
.service-sidebar {
  position: sticky;
  top: 108px;
}
.service-panel {
  padding: 26px;
}
.service-panel .section-head {
  margin-bottom: 18px;
}
.service-panel .section-head h2,
.service-panel .section-head p {
  margin: 0;
}
.service-panel .section-head h2 {
  font-size: 1.8rem;
}
.entry-content {
  line-height: 1.8;
}
.entry-content h2,
.entry-content h3 {
  margin: 1.5em 0 0.55em;
  line-height: 1.2;
  font-family: "Noto Serif Display", Georgia, "Times New Roman", serif;
}
.entry-content p {
  margin: 0 0 1em;
  color: var(--ink);
}
.entry-content ul,
.entry-content ol {
  margin: 0 0 1em;
  padding-left: 18px;
}
.service-intro__highlight {
  margin: 24px 0;
  padding: 24px 28px;
  background: #eef5ff;
  border: 1px solid rgba(31, 77, 159, 0.12);
  border-radius: 20px;
}
.service-intro__highlight p:last-child,
.service-intro__highlight ul:last-child {
  margin-bottom: 0;
}
.service-contact-panel h2,
.service-panel h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}
.service-contact-panel > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.service-contact-form {
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.service-link-list,
.service-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-link-list {
  display: grid;
  gap: 10px;
}
.service-link-list a {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
}
.service-link-list .is-active a {
  color: #084f7b;
  background: #dff4ff;
  border-color: #a8d8f1;
}
.service-contact-list {
  display: grid;
  gap: 12px;
}
.service-contact-list li {
  display: grid;
  gap: 4px;
}
.service-contact-list strong {
  color: var(--blue);
}
.service-contact-list a {
  color: var(--ink);
  font-weight: 700;
}
.service-review-panel h2 {
  margin-bottom: 14px;
}
.service-review-list {
  display: grid;
  gap: 12px;
}
.service-review-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fbff;
}
.service-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.service-review-card__head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.service-review-card__head strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.98rem;
}
.service-review-card__head span {
  color: var(--muted);
  font-size: 0.9rem;
}
.service-review-card__stars {
  margin-bottom: 6px;
  color: #f2b01e;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.service-review-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
  font-size: 0.95rem;
}
.service-box-grid,
.requirement-grid,
.pricing-grid,
.benefit-grid {
  display: grid;
  gap: 14px;
}
.service-box-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-mini-card,
.requirement-item,
.pricing-card,
.benefit-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
}
.service-mini-card h3,
.pricing-card strong {
  margin: 0 0 8px;
}
.service-mini-card p,
.pricing-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.requirement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.visa-doc-tabs {
  display: grid;
  gap: 18px;
}
.visa-doc-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #1f4bbf;
  border-bottom: 0;
  border-radius: 0;
  background: #fff;
}
.visa-doc-tabs__button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid rgba(31, 75, 191, 0.18);
  border-radius: 0;
  color: #1f4bbf;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.visa-doc-tabs__button:last-child {
  border-right: 0;
}
.visa-doc-tabs__button.is-active {
  color: #fff;
  background: #1f4bbf;
  box-shadow: none;
}
.visa-doc-tabs__panel {
  padding: 18px 22px 22px;
  border: 1px solid #1f4bbf;
  border-top: 0;
  border-radius: 0;
  background: #fff;
}
.visa-doc-accordion {
  display: grid;
  gap: 16px;
}
.visa-doc-accordion__item {
  border: 0;
}
.visa-doc-accordion__item summary {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 10px 0;
}
.visa-doc-accordion__item summary::-webkit-details-marker {
  display: none;
}
.visa-doc-accordion__item summary::after {
  content: "▾";
  font-size: 0.9em;
  transition: transform 0.18s ease;
}
.visa-doc-accordion__item[open] summary::after {
  transform: rotate(180deg);
}
.visa-doc-accordion__body {
  padding: 6px 0 2px 0;
}
.visa-doc-accordion__body .visa-doc-list {
  margin: 0;
}
.visa-doc-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 22px;
  list-style: disc;
}
.visa-doc-list li {
  position: static;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 400;
  line-height: 1.55;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-card {
  background: #fff;
}
.pricing-card__label {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.84rem;
}
.pricing-card strong {
  display: block;
  font-size: 1.85rem;
}
.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.benefit-item {
  font-weight: 700;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 18px;
  font-weight: 800;
  cursor: pointer;
}
.faq-item__body {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}
.testimonial-grid--service {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.process-steps--service .process-step {
  background: var(--bg-soft);
  border-color: var(--line);
  color: var(--ink);
}
.process-steps--service .process-step__body h3 {
  color: var(--ink);
}
.content-shell {
  max-width: 880px;
}
.archive-shell {
  max-width: 1020px;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.search-results-form,
.search-form {
  display: flex;
  align-items: stretch;
  width: min(100%, 680px);
  margin: 0 0 26px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.search-results-form input,
.search-form input {
  flex: 1;
  min-width: 0;
  min-height: 54px;
  border: 0;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
}
.search-results-form button,
.search-form button {
  min-width: 116px;
  border: 0;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--blue-2);
  font-weight: 800;
  cursor: pointer;
}
.search-results-form svg,
.search-form svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-result-card {
  display: flex;
  flex-direction: column;
}
.search-result-card__image {
  display: block;
  margin: -22px -22px 18px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid var(--line);
}
.search-result-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.search-result-card .card-link {
  margin-top: auto;
  padding-top: 12px;
}
.search-empty {
  max-width: 680px;
}
.page-card h1,
.post-card h2 {
  margin-top: 0;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 60;
  display: grid;
  gap: 12px;
}
.float-actions__item {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  appearance: none;
  border: 1.5px solid #2f86ff;
  background: #fff;
  color: #2f86ff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(23, 61, 108, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.float-actions__item:hover,
.float-actions__item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(23, 61, 108, 0.14);
}
.float-actions__item svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.float-actions__label {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.float-actions__item--solid {
  border-color: transparent;
  background: linear-gradient(180deg, #59b7ff, #2f86ff);
  color: #fff;
}
.float-actions__item--solid svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
  .float-actions {
    right: 14px;
    bottom: 68px;
    gap: 10px;
  }

  .float-actions__item {
    width: 54px;
    height: 54px;
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

@keyframes floatBobX {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--hero-rotate, 0deg)); }
  50% { transform: translate3d(8px, -10px, 0) rotate(var(--hero-rotate, 0deg)); }
}

@keyframes floatBobX2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--hero-rotate, 0deg)); }
  50% { transform: translate3d(-10px, 8px, 0) rotate(var(--hero-rotate, 0deg)); }
}

@keyframes floatBobY {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--hero-rotate, 0deg)); }
  50% { transform: translate3d(0, -12px, 0) rotate(var(--hero-rotate, 0deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .float-bob-x,
  .float-bob-y,
  .float-bob-x2,
  .hero-collage__image,
  .hero__plane,
  .hero__marker,
  .hero-badge--top,
  .hero-badge--bottom {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .process,
  .about,
  .contact,
  .footer__grid,
  .testimonial-grid,
  .post-grid,
  .service-hero,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    min-height: 470px;
  }
  .service-hero__visual {
    min-height: 320px;
  }
  .service-sidebar {
    position: static;
  }
  .about__media {
    min-height: 500px;
  }
  .process-band {
    grid-template-columns: 1fr;
  }
  .process-band__visual {
    min-height: 480px;
  }
  .testimonial-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar__inner,
  .announcement__inner,
  .header__inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-grid;
    margin-left: auto;
    place-items: center;
    position: relative;
    z-index: 1002;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] {
    background: #f6fafe;
    border-color: #bfd5ea;
    box-shadow: 0 10px 24px rgba(18, 70, 120, 0.12);
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(11, 29, 48, 0.46);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    width: min(92vw, 390px);
    height: 100dvh;
    padding: 0;
    background: #fff;
    border-left: 1px solid rgba(17, 79, 130, 0.08);
    box-shadow: -18px 0 42px rgba(16, 56, 93, 0.18);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }
  .site-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav__header,
  .site-nav__footer {
    display: block;
  }
  .site-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(17, 79, 130, 0.08);
    background:
      linear-gradient(180deg, rgba(236, 246, 255, 0.96), rgba(255, 255, 255, 0.98)),
      radial-gradient(circle at top left, rgba(21, 195, 198, 0.14), transparent 44%);
  }
  .site-nav__brand strong {
    font-size: 1rem;
    color: var(--ink);
  }
  .site-nav__close {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(17, 79, 130, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(16, 56, 93, 0.1);
  }
  .site-nav__close span {
    font-size: 1.75rem;
    line-height: 1;
    transform: translateY(-1px);
  }
  .main-menu {
    flex: 1;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    overflow-y: auto;
  }
  .main-menu > li {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(17, 79, 130, 0.08);
  }
  .main-menu > li > a {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding: 16px 0;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #173657;
  }
  .main-menu > li > a:hover {
    color: var(--blue-2);
  }
  .menu-item-has-children > a::after {
    display: none;
  }
  .submenu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    position: relative;
    justify-self: end;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #1f2d3d;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .submenu-toggle:hover,
  .submenu-toggle:focus-visible {
    background: transparent;
    color: #0b5f99;
  }
  .submenu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease;
  }
  .submenu-toggle span:first-child {
    transform: translate(calc(-50% - 3px), -50%) rotate(45deg);
  }
  .submenu-toggle span:last-child {
    transform: translate(calc(-50% + 3px), -50%) rotate(-45deg);
  }
  .main-menu > li.is-expanded .submenu-toggle span:first-child {
    transform: translate(calc(-50% - 3px), -50%) rotate(-45deg);
  }
  .main-menu > li.is-expanded .submenu-toggle span:last-child {
    transform: translate(calc(-50% + 3px), -50%) rotate(45deg);
  }
  .sub-menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr;
    min-width: 0;
    margin: 0 0 12px;
    padding: 10px 0 4px 14px;
    background: #f6f9fc;
    border: 0;
    box-shadow: none;
    border-radius: 16px;
  }
  .main-menu > li.is-expanded > .sub-menu {
    display: grid;
    gap: 2px;
  }
  .main-menu > li:not(.is-expanded) > .sub-menu {
    display: none !important;
  }
  .main-menu > li.is-expanded > a {
    color: var(--blue);
  }
  .sub-menu a {
    padding: 11px 14px;
    background: transparent;
    border: 0;
    border-radius: 12px;
    color: #35526d;
  }
  .sub-menu a:hover {
    background: #fff;
  }
  .site-nav__footer {
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(17, 79, 130, 0.08);
    background: #fff;
  }
  .site-nav__promo {
    margin: 0 0 12px;
    color: #48647f;
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .site-nav__contact {
    display: grid;
    gap: 8px;
  }
  .site-nav__contact p {
    margin: 0;
    font-size: 0.94rem;
    color: #48647f;
  }
  .site-nav__contact span {
    font-weight: 700;
    color: var(--blue-2);
  }
  .site-nav__contact a {
    font-weight: 800;
    color: var(--ink);
  }
  .hero h1 { font-size: 2.7rem; }
  .hero__stats,
  .service-grid,
  .form-grid,
  .contact-form--wpforms .wpforms-field-container {
    grid-template-columns: 1fr;
  }
  .service-box-grid,
  .requirement-grid,
  .pricing-grid,
  .benefit-grid,
  .testimonial-grid--service {
    grid-template-columns: 1fr;
  }
  .service-panel {
    padding: 22px;
  }
  .hero__visual {
    min-height: 380px;
  }
  .hero-badge--top { right: 0; }
  .hero-badge--bottom { left: 0; bottom: 30px; }
  .about__media { min-height: 420px; }
  .testimonial-card { padding: 18px; }
  .process-step {
    grid-template-columns: 1fr;
  }
  .process-step__num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .process-stats {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .service-journal {
    width: min(100% - 22px, var(--container));
    margin-top: 16px;
    border-radius: 14px;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .hero-collage__image--one {
    width: 62%;
    right: 4%;
  }
  .hero-collage__image--two {
    width: 58%;
    left: 0;
  }
  .hero-collage__image--three {
    width: 68%;
  }
  .hero-badge {
    display: none;
  }
  .header-cta {
    display: none;
  }
}
