:root {
  --navy: #0a1d4c;
  --turquoise: #30f2f2;
  --medical-blue: #007b9e;
  --red: #e30613;
  --white: #ffffff;
  --light-grey: #f5f7fa;
  --text: #17304f;
  --muted: #4e6481;
  --border: rgba(10, 29, 76, 0.12);
  --shadow: 0 20px 40px rgba(10, 29, 76, 0.08);
  --shadow-soft: 0 10px 30px rgba(10, 29, 76, 0.06);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(48, 242, 242, 0.14), transparent 28%),
    linear-gradient(180deg, #eef7fb 0%, #ffffff 34%, #edf5fb 100%);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 72px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.82);
}

.section.tight {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(48, 242, 242, 0.14);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 5px rgba(48, 242, 242, 0.16);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  line-height: 1.16;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.small-text {
  font-size: 0.94rem;
}

.accent {
  color: var(--medical-blue);
}

.highlight {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 29, 76, 0.08);
  backdrop-filter: blur(18px);
}

.header-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    url("../images/logo-mark.svg") center / cover no-repeat,
    linear-gradient(135deg, var(--navy), var(--medical-blue));
  color: transparent;
  font-size: 0;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.brand-tag {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.nav-toggle-bar::before {
  transform: translateY(-6px);
}

.nav-toggle-bar::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  transform: rotate(-45deg) translateY(-1px);
}

.site-nav {
  position: absolute;
  inset: calc(100% + 1px) 16px auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 29, 76, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--navy);
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"] {
  background: rgba(48, 242, 242, 0.16);
}

.header-actions {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(10, 29, 76, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--medical-blue));
  color: var(--white);
}

.btn-secondary {
  background: rgba(48, 242, 242, 0.16);
  color: var(--navy);
  border-color: rgba(48, 242, 242, 0.34);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(10, 29, 76, 0.16);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #18b45b, #10a54f);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 46px 0 72px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero::before {
  width: 300px;
  height: 300px;
  right: -80px;
  top: 40px;
  background: rgba(48, 242, 242, 0.16);
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -100px;
  bottom: 0;
  background: rgba(227, 6, 19, 0.08);
}

.hero-grid,
.split-grid,
.contact-grid,
.page-grid {
  display: grid;
  gap: 28px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 6px 0;
}

.hero-copy p.lead {
  max-width: 720px;
}

.hero-bullets,
.check-list,
.inline-list,
.link-list,
.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-bullets {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.hero-bullets li,
.check-list li,
.inline-list li {
  position: relative;
  padding-left: 28px;
}

.hero-bullets li::before,
.check-list li::before,
.inline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 5px rgba(48, 242, 242, 0.16);
}

.hero-actions,
.cta-actions,
.dual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card,
.card,
.package-card,
.step-card,
.review-card,
.faq-card,
.bmi-card,
.contact-card,
.info-card,
.blog-card,
.cost-card,
.comparison-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 29, 76, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  padding: 24px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 29, 76, 0.18), rgba(10, 29, 76, 0.88)),
    linear-gradient(90deg, rgba(10, 29, 76, 0.58), rgba(0, 123, 158, 0.18));
}

.hero-visual-image {
  position: absolute;
  inset: 0;
}

.hero-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.hero-visual .placeholder-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
}

.hero-visual-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.placeholder-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
  font-size: 0.92rem;
}

.placeholder-panels {
  display: grid;
  gap: 14px;
}

.placeholder-panel {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.stats-row,
.badge-grid,
.card-grid,
.package-grid,
.review-grid,
.blog-grid,
.trust-grid,
.journey-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.badge-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.trust-badge,
.stats-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 29, 76, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-badge strong,
.stats-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.icon-bubble {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(48, 242, 242, 0.18), rgba(0, 123, 158, 0.12));
  color: var(--medical-blue);
  font-size: 1.5rem;
}

.card,
.package-card,
.step-card,
.review-card,
.faq-card,
.bmi-card,
.contact-card,
.info-card,
.blog-card,
.cost-card,
.comparison-card {
  padding: 28px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.package-grid,
.review-grid,
.blog-grid,
.info-grid,
.journey-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.step-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 29, 76, 0.08);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--medical-blue));
  color: var(--white);
  font-weight: 800;
}

.info-strip,
.cta-panel,
.disclaimer-box,
.booking-box,
.cost-note,
.notice-box {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 29, 76, 0.08);
}

.info-strip {
  background: linear-gradient(135deg, rgba(10, 29, 76, 0.94), rgba(0, 123, 158, 0.9));
  color: var(--white);
}

.info-strip p,
.info-strip h3,
.cta-panel p,
.cta-panel h2,
.disclaimer-box p,
.booking-box p,
.cost-note p,
.notice-box p {
  color: inherit;
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(10, 29, 76, 0.96), rgba(0, 123, 158, 0.92)),
    radial-gradient(circle at top right, rgba(48, 242, 242, 0.28), transparent 30%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel .btn-secondary,
.info-strip .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.disclaimer-box,
.notice-box {
  background: rgba(255, 255, 255, 0.92);
}

.booking-box {
  background: rgba(48, 242, 242, 0.12);
}

.cost-note {
  background: rgba(227, 6, 19, 0.08);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(10, 29, 76, 0.08);
}

th {
  color: var(--navy);
  background: rgba(10, 29, 76, 0.04);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(10, 29, 76, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}

.faq-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 3px;
  width: 2px;
  height: 16px;
  background: var(--medical-blue);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.bmi-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.94));
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(10, 29, 76, 0.14);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(0, 123, 158, 0.42);
  box-shadow: 0 0 0 4px rgba(48, 242, 242, 0.16);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.result-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(10, 29, 76, 0.05);
  border: 1px solid rgba(10, 29, 76, 0.08);
}

.result-box p:last-child {
  margin-bottom: 0;
}

.result-score {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.breadcrumbs {
  padding: 22px 0 0;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
}

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

.page-hero-card {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(10, 29, 76, 0.95), rgba(0, 123, 158, 0.9)),
    radial-gradient(circle at top right, rgba(48, 242, 242, 0.26), transparent 28%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.page-hero-card h1,
.page-hero-card p,
.page-hero-card li {
  color: var(--white);
}

.page-hero-card .inline-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
}

.content-flow > * + * {
  margin-top: 22px;
}

.content-flow h2,
.content-flow h3 {
  margin-top: 8px;
}

.content-flow ul,
.content-flow ol {
  padding-left: 22px;
  margin: 0;
}

.content-flow li + li {
  margin-top: 10px;
}

.image-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 76, 0.88), rgba(0, 123, 158, 0.86)),
    radial-gradient(circle at top left, rgba(48, 242, 242, 0.24), transparent 32%);
  color: var(--white);
}

.image-placeholder small {
  display: block;
  margin-top: 10px;
  opacity: 0.84;
}

.section-photo,
.photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 29, 76, 0.08);
  box-shadow: var(--shadow-soft);
}

.section-photo img,
.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.section-photo {
  min-height: 340px;
}

.section-photo img {
  min-height: 340px;
}

.photo-card-copy {
  padding: 22px 24px 24px;
}

.photo-card-copy > *:last-child {
  margin-bottom: 0;
}

.photo-card-copy p:last-child {
  margin-bottom: 0;
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 18px 22px 22px;
}

.image-caption strong {
  color: var(--navy);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(10, 29, 76, 0.06);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card blockquote,
.blog-card p:last-child {
  margin-bottom: 0;
}

.review-card blockquote {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: var(--navy);
}

.blog-meta,
.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-layout {
  display: grid;
  gap: 28px;
}

.article-main {
  min-width: 0;
}

.article-aside {
  display: grid;
  gap: 18px;
  align-self: start;
}

.sidebar-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 29, 76, 0.08);
  box-shadow: var(--shadow-soft);
}

.link-list {
  display: grid;
  gap: 12px;
}

.link-list a {
  font-weight: 700;
  color: var(--medical-blue);
}

.site-footer {
  padding: 72px 0 30px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid li,
.footer-bottom p {
  color: inherit;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--turquoise);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
}

.floating-whatsapp .btn {
  min-height: 58px;
  padding-inline: 20px;
  box-shadow: 0 18px 32px rgba(24, 180, 91, 0.24);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .field-grid.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

@media (min-width: 820px) {
  .article-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero {
    padding-top: 62px;
    padding-bottom: 90px;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .header-wrap {
    gap: 28px;
  }

  .site-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-left: auto;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-list a {
    padding: 12px 14px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 959px) {
  .header-actions {
    display: none;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .page-hero-card,
  .hero-visual,
  .card,
  .package-card,
  .step-card,
  .review-card,
  .faq-card,
  .bmi-card,
  .contact-card,
  .info-card,
  .blog-card,
  .cost-card,
  .comparison-card,
  .cta-panel,
  .info-strip,
  .disclaimer-box,
  .booking-box,
  .cost-note,
  .notice-box {
    padding: 24px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .floating-whatsapp .btn {
    width: 100%;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
