/*
 * MediFlow Clinic v6.6.37
 * Public homepage — Clinical Executive rebrand
 */

:root {
  --mf-public-navy: #082d3d;
  --mf-public-navy-deep: #051f2b;
  --mf-public-navy-soft: #123f50;
  --mf-public-teal: #168b8a;
  --mf-public-teal-bright: #2fbeb3;
  --mf-public-mint: #ddf6f2;
  --mf-public-ice: #eef7f7;
  --mf-public-canvas: #f5f9fa;
  --mf-public-surface: #ffffff;
  --mf-public-ink: #102f3e;
  --mf-public-muted: #637d89;
  --mf-public-line: #d9e7ea;
  --mf-public-line-strong: #c6dadd;
  --mf-public-success: #148260;
  --mf-public-warning: #e6ad3c;
  --mf-public-radius-sm: 13px;
  --mf-public-radius: 20px;
  --mf-public-radius-lg: 30px;
  --mf-public-shadow-sm: 0 10px 28px rgba(8, 53, 68, .07);
  --mf-public-shadow: 0 24px 68px rgba(7, 47, 62, .13);
  --mf-public-shadow-strong: 0 34px 90px rgba(3, 31, 43, .28);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #9fc8c8 #edf4f5;
}

html {
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 190, 179, .075), transparent 24rem),
    var(--mf-public-canvas);
  color: var(--mf-public-ink);
  font-family: "Cairo", system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: -.014em;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--mf-public-navy-deep);
  background: #bcece6;
}

a,
button,
input,
select,
textarea {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease, opacity .18s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 190, 179, .38);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 2000;
  padding: 11px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--mf-public-navy);
  box-shadow: var(--mf-public-shadow-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

/* Header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, .91);
  border-bottom: 1px solid rgba(198, 218, 221, .78);
  box-shadow: 0 9px 32px rgba(8, 53, 68, .055);
  backdrop-filter: blur(18px) saturate(145%);
}

.landing-nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-wrap {
  flex: 0 1 auto;
  gap: 12px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  padding: 5px;
  object-fit: contain;
  border: 1px solid var(--mf-public-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(8, 53, 68, .09);
}

.brand-text strong {
  max-width: 245px;
  overflow: hidden;
  color: var(--mf-public-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text span {
  margin-top: 3px;
  color: var(--mf-public-muted);
  font-size: 11px;
  font-weight: 700;
}

.landing-menu {
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.landing-menu-toggle {
  width: 46px;
  height: 46px;
  margin-inline-start: auto;
  border: 1px solid var(--mf-public-line);
  border-radius: 14px;
  color: var(--mf-public-navy);
  background: #f6fbfb;
  font-size: 18px;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 25px);
}

.header-links a {
  position: relative;
  padding: 10px 0;
  color: #365765;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mf-public-teal), var(--mf-public-teal-bright));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .18s ease;
}

.header-links a:hover {
  color: var(--mf-public-teal);
}

.header-links a:hover::after {
  transform: scaleX(1);
}

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

.header-chip {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff;
  background: var(--mf-public-navy);
  box-shadow: none;
  font-size: 12.5px;
  font-weight: 900;
  white-space: nowrap;
}

.header-chip:hover {
  color: inherit;
  transform: translateY(-2px);
}

.header-chip.outline {
  color: #55707b;
  border-color: var(--mf-public-line);
  background: #fff;
}

.header-chip.soft {
  color: #0b7575;
  border-color: #c9e9e6;
  background: #ecf8f7;
}

.header-chip.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--mf-public-teal-bright), var(--mf-public-teal));
  box-shadow: 0 12px 28px rgba(22, 139, 138, .2);
}

/* Hero */
.hero-shell {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px 0 64px;
  background-color: var(--mf-public-navy);
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(102deg, rgba(7, 53, 67, .81) 0%, rgba(7, 45, 59, .91) 43%, rgba(5, 31, 43, .97) 100%),
    radial-gradient(circle at 14% 25%, rgba(47, 190, 179, .24), transparent 30rem);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.hero-shell::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -44%;
  z-index: -1;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(112, 222, 210, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(47, 190, 179, .025), 0 0 0 180px rgba(47, 190, 179, .018);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(112, 222, 210, .14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 11%;
  right: 11%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mf-public-teal-bright);
  box-shadow: 0 0 26px rgba(47, 190, 179, .8);
}

.hero-orbit-one {
  top: -250px;
  left: -180px;
  width: 560px;
  height: 560px;
}

.hero-orbit-two {
  right: 38%;
  bottom: -220px;
  width: 410px;
  height: 410px;
  opacity: .55;
}

.hero-layout {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) 448px;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.hero-content {
  max-width: 715px;
  padding: 0;
  color: #fff;
}

.eyebrow {
  margin-bottom: 20px;
  padding: 9px 13px;
  gap: 9px;
  color: #dffffb;
  border: 1px solid rgba(112, 222, 210, .22);
  border-radius: 999px;
  background: rgba(112, 222, 210, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #63e1d6;
  box-shadow: 0 0 0 5px rgba(99, 225, 214, .11), 0 0 22px rgba(99, 225, 214, .7);
}

.hero-content h1 {
  max-width: 750px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(40px, 4.65vw, 66px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.hero-lead {
  max-width: 690px;
  margin: 0 0 22px;
  color: rgba(239, 252, 253, .83);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.hero-actions {
  gap: 10px;
  margin-bottom: 11px;
}

.hero-btn {
  min-height: 49px;
  padding: 12px 19px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 900;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn.primary {
  color: #075f64;
  background: linear-gradient(135deg, #fff, #e8faf7);
  box-shadow: 0 17px 38px rgba(0, 0, 0, .2);
}

.hero-btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.hero-assurance {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: rgba(226, 248, 248, .67);
  font-size: 11px;
  font-weight: 700;
}

.hero-assurance i {
  color: #70ded2;
}

.hero-badges {
  gap: 8px;
  margin-bottom: 17px;
}

.hero-badges span {
  padding: 8px 11px;
  gap: 7px;
  color: rgba(245, 255, 255, .89);
  border-color: rgba(255, 255, 255, .11);
  border-radius: 11px;
  background: rgba(255, 255, 255, .055);
  font-size: 11.5px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-badges i {
  color: #70ded2;
}

.hero-notes-grid {
  max-width: 650px;
  gap: 10px;
}

.hero-note-card {
  min-height: 68px;
  padding: 13px 14px;
  border-color: rgba(255, 255, 255, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(10px);
}

.hero-note-card > i {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 11px;
  color: #8fe8df;
  background: rgba(112, 222, 210, .105);
  font-size: 14px;
}

.hero-note-card strong {
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 900;
}

.hero-note-card small {
  color: rgba(236, 251, 252, .68);
  font-size: 10.5px;
  line-height: 1.65;
}

/* Booking */
.booking-panel {
  position: relative;
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border: 1px solid rgba(112, 222, 210, .12);
  border-radius: 38px;
  background: rgba(112, 222, 210, .035);
  transform: rotate(-1.5deg);
}

.booking-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 27px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--mf-public-shadow-strong);
  backdrop-filter: blur(18px) saturate(130%);
}

.booking-progress {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.booking-progress span {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: #d8e7e9;
}

.booking-progress span.active {
  width: 38px;
  background: linear-gradient(90deg, var(--mf-public-teal), var(--mf-public-teal-bright));
}

.booking-progress small {
  margin-inline-start: auto;
  color: #738a94;
  font-size: 9.5px;
  font-weight: 800;
}

.booking-head {
  align-items: flex-start;
  margin-bottom: 13px;
}

.mini-label {
  margin-bottom: 6px;
  padding: 6px 9px;
  color: #087777;
  border: 1px solid #caebe7;
  border-radius: 999px;
  background: #eaf8f6;
  font-size: 9.5px;
}

.booking-head h3 {
  margin: 0;
  color: var(--mf-public-navy);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.045em;
}

.booking-head p {
  margin: 3px 0 0;
  color: var(--mf-public-muted);
  font-size: 10.5px;
  font-weight: 600;
}

.booking-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid #d5efec;
  border-radius: 16px;
  color: #0a8381;
  background: linear-gradient(145deg, #ddf7f3, #f2fafb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  font-size: 18px;
}

.booking-card .alert {
  border: 0;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 700;
}

.booking-form .row {
  --bs-gutter-x: .7rem;
  --bs-gutter-y: .62rem;
}

.booking-form .form-label {
  margin-bottom: 5px;
  color: #294c5b;
  font-size: 11.5px;
  font-weight: 800;
}

.booking-form .form-control,
.booking-form .form-select {
  min-height: 46px;
  padding: 10px 13px;
  color: var(--mf-public-ink);
  border: 1px solid #d5e3e6;
  border-radius: 12px;
  background: #fbfdfd;
  box-shadow: inset 0 1px 2px rgba(8, 53, 68, .018);
  font-size: 12px;
}

.booking-form .form-control::placeholder {
  color: #9aabb2;
}

.booking-form textarea.form-control {
  min-height: 69px;
  resize: vertical;
}

.booking-form .form-control:hover,
.booking-form .form-select:hover {
  border-color: #b9d1d4;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: #55bdb7;
  background: #fff;
  box-shadow: 0 0 0 .2rem rgba(47, 190, 179, .115);
}

.booking-tip {
  margin-top: 5px;
  color: #167a7b;
  font-size: 9.5px;
  font-weight: 700;
}

.booking-submit {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--mf-public-teal-bright), var(--mf-public-teal));
  box-shadow: 0 15px 32px rgba(22, 139, 138, .22);
  font-size: 12px;
  font-weight: 900;
}

.booking-submit span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.booking-submit:hover {
  color: #fff;
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.booking-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  padding-top: 11px;
  color: #6d858f;
  border-top-color: #e6eef0;
  font-size: 8.8px;
  font-weight: 700;
}

.booking-foot span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.booking-foot i {
  color: #1b918b;
}

/* Quick information */
.quick-strip-wrap {
  position: relative;
  z-index: 4;
  margin-top: -29px;
}

.quick-strip {
  padding: 12px;
  gap: 10px;
  border: 1px solid var(--mf-public-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--mf-public-shadow);
  backdrop-filter: blur(15px);
}

.quick-item {
  min-height: 82px;
  padding: 13px 14px;
  gap: 12px;
  border: 1px solid #e3edef;
  border-radius: 16px;
  background: linear-gradient(145deg, #fbfdfd, #f2f8f8);
}

.quick-item i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid #d2ebe8;
  border-radius: 13px;
  color: #0e8481;
  background: #e7f6f4;
  font-size: 15px;
}

.quick-item strong {
  margin-bottom: 2px;
  color: #173e4d;
  font-size: 13px;
  font-weight: 900;
}

.quick-item span {
  color: var(--mf-public-muted);
  font-size: 10.5px;
  line-height: 1.65;
}

/* Shared sections */
.section-block {
  position: relative;
  padding: 88px 0;
}

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

.section-kicker {
  margin-bottom: 12px;
  padding: 7px 11px;
  color: #087777;
  border: 1px solid #ccebe8;
  border-radius: 999px;
  background: #eaf8f6;
  font-size: 10px;
  font-weight: 900;
}

.section-head h2,
.contact-card-home h2 {
  color: var(--mf-public-navy);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.section-head p {
  max-width: 680px;
  margin-inline: auto;
  color: var(--mf-public-muted);
  font-size: 14px;
  line-height: 1.9;
}

.muted-section {
  overflow: hidden;
  border-top: 1px solid #e0ebed;
  border-bottom: 1px solid #e0ebed;
  background:
    radial-gradient(circle at 85% 15%, rgba(47, 190, 179, .08), transparent 24rem),
    linear-gradient(180deg, #eef6f7, #f8fbfb);
}

.muted-section::after {
  content: "";
  position: absolute;
  bottom: -190px;
  left: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(22, 139, 138, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(22, 139, 138, .018), 0 0 0 150px rgba(22, 139, 138, .012);
}

/* Feature cards */
.feature-grid {
  gap: 16px;
}

.feature-card,
.service-card-home {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mf-public-line);
  border-radius: 21px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--mf-public-shadow-sm);
}

.feature-card {
  min-height: 230px;
  padding: 23px;
}

.feature-card::after,
.service-card-home::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mf-public-teal-bright), transparent);
  opacity: 0;
  transition: opacity .18s ease;
}

.feature-card:hover,
.service-card-home:hover {
  border-color: #bcdadb;
  box-shadow: 0 22px 50px rgba(8, 53, 68, .11);
  transform: translateY(-6px);
}

.feature-card:hover::after,
.service-card-home:hover::after {
  opacity: 1;
}

.feature-number {
  position: absolute;
  top: 18px;
  left: 19px;
  color: #c6d8dc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.feature-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid #d2ece8;
  border-radius: 17px;
  color: #0d8481;
  background: linear-gradient(145deg, #ddf6f2, #f1f9fa);
  font-size: 20px;
}

.feature-card h3,
.service-card-home h3 {
  color: #173e4d;
  font-size: 17px;
  font-weight: 900;
}

.feature-card p,
.service-card-home p {
  color: var(--mf-public-muted);
  font-size: 12px;
  line-height: 1.9;
}

/* Services */
.service-grid-home {
  position: relative;
  z-index: 1;
  gap: 16px;
}

.service-card-home {
  min-height: 215px;
  padding: 22px;
}

.service-card-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 17px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--mf-public-teal-bright), var(--mf-public-teal));
  box-shadow: 0 14px 28px rgba(22, 139, 138, .18);
  font-size: 19px;
}

.service-card-home.empty-wide {
  min-height: auto;
}

/* Testimonials */
.testimonial-grid-home {
  gap: 16px;
}

.testimonial-card-home {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 25px;
  color: var(--mf-public-ink);
  border: 1px solid var(--mf-public-line);
  border-radius: 22px;
  background: linear-gradient(150deg, #fff, #f7fbfb);
  box-shadow: var(--mf-public-shadow-sm);
}

.testimonial-card-home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--mf-public-teal), var(--mf-public-teal-bright));
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #e0f2f0;
  font-size: 38px;
}

.stars-row {
  gap: 4px;
  margin-bottom: 16px;
  color: var(--mf-public-warning);
  font-size: 12px;
}

.testimonial-card-home p {
  position: relative;
  max-width: 95%;
  margin-bottom: 20px;
  color: #415e69;
  font-size: 13px;
  line-height: 2;
  opacity: 1;
}

.testimonial-card-home strong {
  color: var(--mf-public-navy);
  font-size: 14px;
  font-weight: 900;
}

.testimonial-card-home span {
  color: var(--mf-public-muted);
  font-size: 10.5px;
  opacity: 1;
}

/* Contact */
.contact-section {
  padding-top: 12px;
}

.contact-grid-home {
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 18px;
}

.contact-card-home,
.map-card-home {
  overflow: hidden;
  border: 1px solid var(--mf-public-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--mf-public-shadow);
}

.contact-card-home {
  position: relative;
  padding: 27px;
  color: #fff;
  border-color: rgba(112, 222, 210, .12);
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 190, 179, .2), transparent 13rem),
    linear-gradient(145deg, #10495a, var(--mf-public-navy-deep));
}

.contact-card-home .section-kicker {
  color: #cffffa;
  border-color: rgba(112, 222, 210, .18);
  background: rgba(112, 222, 210, .09);
}

.contact-card-home h2 {
  color: #fff;
  font-size: 31px;
}

.contact-lines {
  gap: 9px;
  margin: 18px 0;
}

.contact-lines div {
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}

.contact-lines i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #7de2d9;
  border-radius: 9px;
  background: rgba(112, 222, 210, .1);
  font-size: 12px;
}

.contact-lines span {
  color: rgba(244, 255, 255, .82);
  font-size: 11.5px;
  line-height: 1.8;
}

.contact-actions-home {
  gap: 8px;
}

.contact-actions-home .hero-btn {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 11px;
}

.map-card-home {
  min-height: 390px;
  background: #e7f0f2;
}

.map-card-home iframe {
  display: block;
  filter: saturate(.82) contrast(.98);
}

/* Footer */
.landing-footer {
  margin-top: 58px;
  padding: 36px 0;
  color: #fff;
  border-top: 1px solid rgba(112, 222, 210, .11);
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 190, 179, .12), transparent 19rem),
    linear-gradient(145deg, #0b3949, #061f2b);
}

.footer-inner-home {
  gap: 22px;
}

.footer-inner-home strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.footer-inner-home p {
  max-width: 520px;
  color: rgba(240, 253, 253, .67);
  font-size: 11.5px;
}

.footer-links-home {
  gap: 12px;
}

.footer-links-home a {
  color: rgba(248, 255, 255, .82);
  font-size: 11px;
  font-weight: 800;
}

.footer-links-home a:hover {
  color: #82e4db;
}

.footer-copy-home {
  color: rgba(240, 253, 253, .58);
  font-size: 9.5px;
  line-height: 1.8;
}

.mf-public-version {
  display: inline-flex;
  align-items: center;
  margin-inline-start: 6px;
  padding: 3px 8px;
  color: #d9fffb;
  border: 1px solid rgba(112, 222, 210, .17);
  border-radius: 999px;
  background: rgba(112, 222, 210, .08);
  font-size: 8px;
  font-weight: 900;
}

.whatsapp-float {
  width: 57px;
  height: 57px;
  left: 18px;
  bottom: 18px;
  border: 3px solid rgba(255, 255, 255, .88);
  color: #fff;
  background: #25d366;
  box-shadow: 0 15px 34px rgba(21, 125, 72, .3);
  font-size: 26px;
}

.whatsapp-float:hover {
  color: #fff;
  filter: brightness(.97);
  transform: translateY(-3px);
}

.mobile-booking-dock {
  display: none;
}

/* Tablet */
@media (max-width: 1199.98px) {
  .landing-nav {
    gap: 16px;
  }

  .brand-text strong {
    max-width: 175px;
    font-size: 17px;
  }

  .header-links {
    gap: 13px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-chip {
    padding: 10px 11px;
    font-size: 11px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 414px;
    gap: 32px;
  }

  .hero-content h1 {
    font-size: clamp(38px, 4.5vw, 56px);
  }

  .hero-lead {
    font-size: 14.5px;
  }
}

/* Mobile navigation and stacked hero */
@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 88px;
  }

  .landing-nav {
    min-height: 74px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .landing-menu {
    width: 100%;
    flex-basis: 100%;
    padding: 10px;
    border: 1px solid var(--mf-public-line);
    border-radius: 18px;
    background: rgba(249, 252, 252, .98);
    box-shadow: var(--mf-public-shadow-sm);
  }

  .landing-menu.show,
  .landing-menu.collapsing {
    display: grid;
  }

  .header-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .header-links a {
    padding: 9px 6px;
    border-radius: 10px;
    text-align: center;
    background: #f0f7f7;
    font-size: 10px;
  }

  .header-links a::after {
    display: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 8px;
  }

  .header-chip {
    min-height: 41px;
    padding: 8px;
    font-size: 10px;
  }

  .hero-shell {
    min-height: auto;
    padding: 42px 0 54px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    order: -1;
    max-width: 760px;
  }

  .booking-panel {
    order: 0;
    width: min(100%, 570px);
    margin: 0 auto;
  }

  .quick-strip-wrap {
    margin-top: -22px;
  }

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

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

  .testimonial-grid-home {
    grid-template-columns: 1fr;
  }

  .testimonial-card-home {
    min-height: auto;
  }

  .contact-grid-home {
    grid-template-columns: 1fr;
  }
}

/* Phones */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 24px, 1240px);
  }

  .landing-header {
    background: rgba(255, 255, 255, .96);
  }

  .brand-text strong {
    max-width: 185px;
    font-size: 15px;
  }

  .brand-text span {
    display: none;
  }

  .hero-shell {
    padding: 32px 0 44px;
    background-position: 60% center;
  }

  .hero-shell::before {
    opacity: .22;
  }

  .hero-content h1 {
    margin-bottom: 13px;
    font-size: clamp(31px, 10vw, 42px);
    line-height: 1.23;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.85;
  }

  .hero-btn {
    flex: 1 1 180px;
    justify-content: center;
    padding-inline: 13px;
    font-size: 11.5px;
  }

  .hero-assurance {
    font-size: 9.5px;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-badges span {
    justify-content: center;
    padding: 8px 5px;
    text-align: center;
    font-size: 8.5px;
  }

  .hero-notes-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel::before {
    inset: -8px;
    border-radius: 29px;
  }

  .booking-card {
    padding: 18px;
    border-radius: 23px;
  }

  .booking-head h3 {
    font-size: 24px;
  }

  .booking-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: 72px;
  }

  .section-block {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 25px;
  }

  .section-head h2,
  .contact-card-home h2 {
    font-size: 27px;
  }

  .section-head p {
    font-size: 12px;
  }

  .feature-grid,
  .service-grid-home {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card-home {
    min-height: auto;
  }

  .map-card-home {
    min-height: 300px;
  }

  .footer-inner-home {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner-home p {
    margin-inline: auto;
  }

  .footer-copy-home {
    text-align: center;
  }

  .landing-footer {
    margin-top: 36px;
    padding: 29px 0;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 84px;
    font-size: 23px;
  }

  .mobile-booking-dock {
    position: fixed;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 1250;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(198, 218, 221, .9);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(5, 31, 43, .2);
    backdrop-filter: blur(15px);
  }

  .mobile-booking-dock a {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--mf-public-line);
    border-radius: 13px;
    color: #315460;
    background: #f5f9f9;
    font-size: 10.5px;
    font-weight: 900;
  }

  .mobile-booking-dock a.primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--mf-public-teal-bright), var(--mf-public-teal));
    box-shadow: 0 10px 22px rgba(22, 139, 138, .2);
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-text strong {
    max-width: 155px;
  }

  .landing-menu-toggle {
    width: 43px;
    height: 43px;
  }

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

  .header-actions {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-badges span {
    justify-content: flex-start;
    padding-inline: 10px;
    text-align: right;
    font-size: 9.5px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .landing-header,
  .hero-actions,
  .whatsapp-float,
  .mobile-booking-dock,
  .map-card-home,
  .landing-footer {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
  }

  .hero-shell {
    min-height: auto;
    padding: 20px 0;
    color: #111;
    background: #fff !important;
  }

  .hero-overlay,
  .hero-orbit,
  .hero-shell::before,
  .hero-shell::after {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    color: #111;
  }

  .hero-content h1,
  .hero-lead {
    color: #111;
    text-shadow: none;
  }

  .booking-card {
    border: 1px solid #bbb;
    box-shadow: none;
  }
}
