:root {
  --turquoise: #08a9bd;
  --turquoise-dark: #027f91;
  --turquoise-soft: #e8f8fa;
  --red: #e7192b;
  --red-dark: #bb1020;
  --ink: #17323a;
  --muted: #62777e;
  --line: #dce9ec;
  --white: #ffffff;
  --off-white: #f7fbfc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(23, 50, 58, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(23, 50, 58, 0.08);
  border-bottom: 1px solid rgba(220, 233, 236, 0.5);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 8px 24px;
  color: var(--white);
  background: var(--turquoise-dark);
  font-size: 13px;
  max-height: 40px;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.site-header.scrolled .top-strip {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  min-height: 82px;
  margin: 0 auto;
  padding: 12px 24px;
  gap: 24px;
}

.brand {
  width: 180px;
  height: 58px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--turquoise-dark);
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 30;
  padding: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

.menu-toggle.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 50, 58, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 18;
  /* Sits behind header (z-index 20) but above page content */
}

.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(231, 25, 43, 0.22);
}

.button.primary {
  color: var(--white);
  background: var(--turquoise-dark);
  box-shadow: 0 14px 30px rgba(2, 127, 145, 0.22);
}

.button.primary.red {
  background: var(--red);
  box-shadow: 0 14px 30px rgba(231, 25, 43, 0.22);
}

.button.secondary {
  color: var(--turquoise-dark);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(2, 127, 145, 0.75) 0%, rgba(189, 8, 8, 0.274) 100%),
    url("https://images.unsplash.com/photo-1551076805-e1869033e561?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero::after {
  position: absolute;
  right: -4vw;
  bottom: -118px;
  left: -4vw;
  height: 210px;
  content: "";
  background: var(--white);
  transform: rotate(-4deg);
  transform-origin: left center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.8) 46% 54%, transparent 54%);
  background-size: 120px 120px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  align-items: center;
  max-width: 1160px;
  min-height: 590px;
  margin: 0 auto;
  padding: 96px 24px 164px;
  gap: 62px;
}

.hero-copy {
  max-width: 610px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--white);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-weight: 300;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.5rem, 72px);
}

h2 {
  font-size: clamp(28px, 2.625rem, 42px);
}

h3 {
  font-size: 21px;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: heroFloatIn 0.9s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-media img,
.feature-image img,
.detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section,
.service-band,
.split-feature,
.values-section,
.founder-panel,
.services-detail,
.contact-layout,
.availability-strip {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.section-grid p:last-child,
.feature-copy p,
.value-item p,
.service-card p,
.detail-card p,
.contact-info p,
.info-list span,
.site-footer p {
  color: var(--muted);
}

.service-band {
  background: var(--off-white);
  max-width: none;
}

.service-band>* {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 46px;
}

.service-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card,
.value-item,
.detail-card,
.booking-form {
  border: 1px solid rgba(220, 233, 236, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 38px rgba(23, 50, 58, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-card,
.value-item {
  padding: 34px;
}

.service-card {
  --card-pad: 34px;
  position: relative;
  display: flex;
  min-height: 460px;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.service-card-image {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--turquoise-soft);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(10, 28, 34, 0.92) 0%, rgba(10, 28, 34, 0.68) 40%, rgba(10, 28, 34, 0.08) 78%),
    linear-gradient(135deg, rgba(2, 127, 145, 0.35) 0%, rgba(231, 25, 43, 0.16) 42%, rgba(255, 255, 255, 0) 74%);
  pointer-events: none;
}

.service-card:hover .service-card-image img,
.service-card:focus-within .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 100%;
  padding: 34px;
}

.value-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--turquoise-soft);
  color: var(--turquoise-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-index {
  display: block;
  margin-bottom: 22px;
  color: var(--turquoise-dark);
  font-size: 32px;
  font-weight: 900;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(44px, 6vw, 76px);
}

.split-feature.reverse {
  direction: rtl;
}

.split-feature.reverse>* {
  direction: ltr;
}

.feature-image {
  position: relative;
  height: 600px;
  overflow: visible;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 50, 58, 0.12);
}

.feature-image img {
  position: relative;
  z-index: 1;
  border-radius: inherit;
}

.chronic-feature .feature-image::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -22px;
  width: 132px;
  height: 132px;
  content: "";
  border: 2px solid rgba(8, 169, 189, 0.24);
  border-radius: 8px;
}

.chronic-feature .feature-image::after {
  position: absolute;
  z-index: 0;
  right: 28px;
  bottom: -18px;
  width: 118px;
  height: 74px;
  content: "";
  background:
    linear-gradient(var(--red), var(--red)) 50% 50% / 44px 3px no-repeat,
    linear-gradient(var(--red), var(--red)) 18% 50% / 3px 24px no-repeat,
    linear-gradient(var(--turquoise-dark), var(--turquoise-dark)) 80% 50% / 3px 24px no-repeat;
  opacity: 0.72;
}

.feature-copy p {
  font-size: 17px;
}

.founder-panel {
  max-width: none;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.founder-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(44px, 6vw, 82px);
  max-width: 1160px;
  margin: 0 auto;
}

.founder-portrait {
  position: relative;
  overflow: visible;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(23, 50, 58, 0.14);
}

.founder-portrait::before {
  position: absolute;
  z-index: 0;
  top: -26px;
  left: -28px;
  width: 156px;
  height: 156px;
  content: "";
  background-image: radial-gradient(rgba(8, 169, 189, 0.28) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}

.founder-portrait::after {
  position: absolute;
  z-index: 0;
  right: -22px;
  bottom: 44px;
  width: 96px;
  height: 96px;
  content: "";
  border: 2px solid rgba(231, 25, 43, 0.24);
  border-radius: 8px;
}

.founder-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: inherit;
}

.founder-copy {
  max-width: 620px;
}

.founder-copy p {
  color: var(--muted);
  font-size: 17px;
}

.why-choose-us {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.why-choose-images {
  display: grid;
  gap: 20px;
}

.why-portrait-img {
  width: 100%;
  height: 500px;
  object-fit: cover;

  box-shadow: 0 18px 46px rgba(23, 50, 58, 0.12);
}

.why-choose-copy h2 {
  margin-bottom: 18px;
}

.why-choose-copy p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 14px;
}

.why-choose-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.why-choose-copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--ink);
}

.why-choose-copy li i {
  color: var(--turquoise-dark);
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .why-choose-us-grid {
    grid-template-columns: 1fr;
  }

  .why-portrait-img {
    height: 280px;
  }
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.availability-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 127, 145, 0.96) 0%, rgba(2, 127, 145, 0.82) 44%, rgba(231, 25, 43, 0.58) 100%),
    url("assets/cta.png") center 42% / cover;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(23, 50, 58, 0.12);
}

.availability-strip::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 42%);
  pointer-events: none;
}

.availability-strip > * {
  position: relative;
  z-index: 1;
}

.availability-strip .eyebrow,
.availability-strip h2 {
  color: var(--white);
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: 360px;
  padding: 86px 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 127, 145, 0.94), rgba(189, 8, 8, 0.295)),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero>div {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(38px, 3.875rem, 62px);
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(2, 127, 145, 0.94), rgba(8, 169, 189, 0.72)),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(2, 127, 145, 0.94), rgba(8, 169, 189, 0.72)),
    url("assets/contacthero.png") center 28% / cover;
}

.mission-vision-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.mission-card {
  background: var(--turquoise-dark);
  border: 1px solid var(--turquoise-dark);
  border-radius: 8px;
  padding: 44px;
  box-shadow: 0 16px 38px rgba(23, 50, 58, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--white);
}

.mission-card h2 {
  color: var(--white);
}

.mission-card p {
  color: rgba(255, 255, 255, 0.9);
}

.mission-card .mv-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.vision-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 44px;
  box-shadow: 0 16px 38px rgba(23, 50, 58, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(23, 50, 58, 0.1);
}

.mv-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--turquoise-soft);
  color: var(--turquoise-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.values-section {
  background: var(--turquoise-soft);
  max-width: none;
}

.values-section>* {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.services-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.detail-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.detail-card img {
  height: 400px;
  object-fit: cover;
}

.detail-card img.image-focus-lower {
  object-position: center 16%;
}

.detail-card div {
  padding: 34px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
}

.detail-card div h2 {
  margin: 0;
}

.detail-card div p {
  margin: 0;
  flex-grow: 1;
}

.detail-card .button {
  align-self: flex-start;
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.info-list div {
  padding-left: 18px;
  border-left: 4px solid var(--turquoise);
}

.info-list strong,
.info-list span {
  display: block;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--off-white);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.site-footer {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand img {
  width: 180px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--turquoise-dark);
}

.footer-col span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.footer-col span strong {
  color: var(--ink);
}

.footer-bottom {
  max-width: 1160px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--turquoise-dark);
  font-weight: 700;
  border-bottom: 1px dashed currentColor;
  transition: color 0.2s ease;
}

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

@media (max-width: 860px) {

  .top-strip,
  .nav-shell,
  .availability-strip {
    flex-wrap: wrap;
  }

  .top-strip {
    justify-content: flex-start;
    gap: 8px 20px;
  }

  .nav-shell {
    justify-content: space-between;
    min-height: 72px;
    padding: 8px 24px;
  }

  .brand {
    width: 160px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 28px rgba(23, 50, 58, 0.15);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 40px;
    gap: 32px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    z-index: 25;
    visibility: hidden;
    /* Hide menu content when closed to prevent overlay bugs */
    pointer-events: none;
    /* Avoid blocking clicks when closed */
  }

  .nav-menu.open {
    transform: translateX(-280px);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    align-items: stretch;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: none;
    color: var(--turquoise-dark);
    background: var(--turquoise-soft);
    border-radius: 6px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-inner,
  .section-grid,
  .split-feature,
  .founder-inner,
  .services-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 124px;
    gap: 38px;
  }

  .hero-media {
    max-width: 460px;
    margin: 0 auto;
  }

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

  .feature-image {
    height: 330px;
  }

  .chronic-feature .feature-image::before {
    top: -14px;
    right: -10px;
    width: 82px;
    height: 82px;
  }

  .chronic-feature .feature-image::after {
    right: 18px;
    bottom: -12px;
    width: 82px;
    height: 52px;
  }

  .founder-portrait {
    min-height: 420px;
  }

  .founder-portrait::before {
    top: -18px;
    left: -14px;
    width: 108px;
    height: 108px;
  }

  .founder-portrait::after {
    right: -10px;
    bottom: 28px;
    width: 66px;
    height: 66px;
  }

  .availability-strip {
    margin-right: 24px;
    margin-left: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .top-strip {
    font-size: 12px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-section,
  .service-band,
  .split-feature,
  .values-section,
  .founder-panel,
  .services-detail,
  .contact-layout,
  .availability-strip {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .page-hero {
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .value-item,
  .detail-card div,
  .booking-form,
  .service-card-content {
    padding: 26px;
  }

  .service-card {
    min-height: 410px;
  }

  .founder-portrait {
    min-height: 360px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

/* Newly Added Premium Styles & UI Polish */

/* Smart Scroll Header & Accents */
.site-header {
  border-bottom: 1px solid transparent;
}

/* Section stacking for clean content bands */
.intro-section,
.service-band,
.split-feature,
.values-section {
  position: relative;
  overflow: hidden;
}

.intro-section>*,
.service-band>*,
.split-feature>*,
.values-section>* {
  position: relative;
  z-index: 1;
}

.intro-section::before {
  display: none;
}

.service-band::before {
  display: none;
}

/* Decorative accents are disabled to keep sections open and easy to scan. */
.split-feature::before {
  display: none;
}

.split-feature::after {
  display: none;
}

.values-section::before {
  display: none;
}

.highlight-red {
  background-color: rgba(231, 25, 43, 0.22);
  border-radius: 4px;
  padding: 0 8px;
  display: inline-block;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card p {
  max-height: 1.7em;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.9;
  transform: translateY(0);
  transition:
    max-height 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s ease,
    transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 14px;
}

.service-card .text-link {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    max-height 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s ease,
    transform 0.2s ease;
}

.service-card:hover p,
.service-card:focus-within p {
  max-height: 180px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .text-link,
.service-card:focus-within .text-link {
  max-height: 40px;
  margin-top: 20px;
  opacity: 1;
  transform: translateY(0);
}

.service-card .text-link:hover {
  transform: translateX(4px);
}

.service-card .service-index {
  color: rgba(255, 255, 255, 0.78);
}

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

@media (hover: none) {
  .service-card p {
    max-height: 180px;
    margin-top: 18px;
    opacity: 1;
    transform: translateY(0);
  }

  .service-card .text-link {
    max-height: 40px;
    margin-top: 20px;
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-socials a {
  font-size: 18px;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: var(--turquoise-dark);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 99;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-item i {
  font-size: 20px;
  color: var(--turquoise-dark);
  background: var(--turquoise-soft);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.highlight-item:hover i {
  transform: scale(1.1);
}

.highlight-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.highlight-item span {
  font-size: 13px;
  color: var(--muted);
}

/* Micro-interactions & animations */
.button,
.nav-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button:active,
.nav-cta:active {
  transform: translateY(0);
}

.service-card,
.value-item,
.detail-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.value-item:hover,
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(23, 50, 58, 0.12);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloatIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .intro-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
