/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --light-steel-blue: hsl(345, 15%, 84%);
  --royal-blue-light: hsl(345, 28%, 46%);
  --flickr-blue_30: hsla(345, 28%, 46%, 0.2);
  --carolina-blue: hsl(345, 58%, 72%);
  --oxford-blue-1: hsl(220, 16%, 16%);
  --oxford-blue-2: hsl(220, 16%, 12%);
  --oxford-blue-3: hsl(220, 16%, 9%);
  --gainsboro_50: hsla(345, 12%, 80%, 0.5);
  --lavender-web: hsl(345, 40%, 94%);
  --sonic-silver: hsl(220, 10%, 45%);
  --light-gray: hsl(345, 18%, 90%);
  --cultured: hsl(345, 26%, 96%);
  --black_10: hsla(220, 10%, 10%, 0.1);
  --black_8: hsla(220, 10%, 10%, 0.08);
  --white: hsl(0, 0%, 100%);
  --black: hsl(220, 20%, 8%);
  --jet: hsl(220, 10%, 22%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(120deg, hsl(345, 65%, 78%) 0%, hsl(345, 30%, 48%) 100%);

  /**
   * typography
   */

  --ff-roboto: "Manrope", sans-serif;
  --ff-poppins: "Playfair Display", serif;

  --fs-1: 4.2rem;
  --fs-2: 4.6rem;
  --fs-3: 3.4rem;
  --fs-4: 2.4rem;
  --fs-5: 2.2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.6rem;

  --fw-800: 800;
  --fw-700: 700;
  --fw-600: 600;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 104px;

  /**
   * shadow
   */

  --shadow-1: 4px 4px 15px var(--black_10);
  --shadow-2: 0 10px 15px var(--black_10);
  --shadow-3: 0px 20px 60px var(--black_8);
  --shadow-4: 0px 10px 30px var(--flickr-blue_30);
  --shadow-5: 0px 2px 60px 0px var(--black_10);

  /**
   * border radius
   */

  --radius-6: 12px;
  --radius-4: 10px;

  /**
   * transition
   */

  --transition: 0.25s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

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

a,
img,
span,
input,
button,
ion-icon { display: block; }

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-roboto);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--cultured);
  background-image: radial-gradient(circle at top, hsla(345, 70%, 78%, 0.12), transparent 55%),
    linear-gradient(180deg, var(--cultured) 0%, hsl(345, 26%, 94%) 100%);
  color: var(--sonic-silver);
  font-size: 1.5rem;
  line-height: 1.6;
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 28px; }

.section { padding-block: var(--section-padding); }

.section-subtitle {
  color: var(--royal-blue-light);
  font-family: var(--ff-poppins);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-block-end: 8px;
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-poppins);
  line-height: 1.12;
}

.h1 {
  color: var(--oxford-blue-1);
  font-size: var(--fs-2);
  letter-spacing: -0.02em;
}

.h2,
.h3 { color: var(--oxford-blue-2); }

.h2 {
  font-size: var(--fs-1);
  letter-spacing: -0.01em;
}

.h3 { font-size: var(--fs-5); }

.btn {
  background-image: linear-gradient( var(--deg, 120deg), var(--carolina-blue) 0%, var(--royal-blue-light) 100%);
  color: var(--white);
  font-size: var(--fs-7);
  text-transform: uppercase;
  padding: 16px 28px;
  text-align: center;
  border-radius: 999px;
  box-shadow: var(--shadow-4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn:is(:hover, :focus) {
  --deg: -120deg;
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

.btn.btn-ghost {
  background-image: none;
  background-color: var(--white);
  color: var(--oxford-blue-1);
  border: 1px solid var(--gainsboro_50);
  box-shadow: var(--shadow-1);
}

.btn.btn-ghost:is(:hover, :focus) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

.link-arrow {
  color: var(--oxford-blue-1);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  position: relative;
  padding-inline-end: 18px;
}

.link-arrow::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-55%);
  color: var(--carolina-blue);
  transition: transform var(--transition);
}

.link-arrow:is(:hover, :focus)::after { transform: translate(4px, -55%); }

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: hsla(0, 0%, 100%, 0.9);
  border: 1px solid var(--gainsboro_50);
  box-shadow: var(--shadow-1);
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  padding-inline-end: 28px;
}

.link-pill::after {
  right: 12px;
  color: var(--royal-blue-light);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--cubic-out), transform 0.7s var(--cubic-out);
  transition-delay: var(--delay, 0s);
}

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

.reveal.delay-2 { --delay: 0.12s; }
.reveal.delay-3 { --delay: 0.24s; }
.reveal.delay-4 { --delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.w-100 { width: 100%; }

.text-center { text-align: center; }

.card-text,
.section-text { line-height: 1.7; }

.section-title {
  max-width: 720px;
  margin-block-end: 18px;
}

.section-title.text-center {
  margin-inline: auto;
}

.section-text.text-center {
  max-width: 680px;
  margin-inline: auto;
  margin-block-end: 30px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

picture { display: block; }

picture img { display: block; }

.img-holder picture {
  width: 100%;
  height: 100%;
}

.img-holder picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
  #HEDER
\*-----------------------------------*/

.header-top,
.header-bottom .btn { display: none; }

.header-bottom {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 15px;
  z-index: 4;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.header-bottom.active {
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gainsboro_50);
  box-shadow: var(--shadow-2);
}

@keyframes slideIn {
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.header-bottom > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  color: var(--oxford-blue-1);
  font-family: var(--ff-poppins);
  font-size: 2.8rem;
  font-weight: var(--fw-800);
}

.logo-img {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-img span {
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle-btn {
  color: var(--black);
  font-size: 30px;
  border: 1px solid var(--gainsboro_50);
  padding: 6px;
  border-radius: 8px;
  background-color: var(--white);
}

.nav-toggle-btn.active .menu-icon,
.nav-toggle-btn .close-icon { display: none; }

.nav-toggle-btn .menu-icon,
.nav-toggle-btn.active .close-icon { display: block; }

.navbar {
  position: absolute;
  top: calc(100% + 5px);
  left: 25px;
  right: 25px;
  background-color: hsla(0, 0%, 100%, 0.98);
  padding-inline: 0;
  box-shadow: var(--shadow-1);
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.25s var(--cubic-out);
}

.navbar.active {
  visibility: visible;
  max-height: 420px;
  transition-duration: 0.5s;
}

.navbar-list > li:not(:last-child) { border-block-end: 1px solid var(--gainsboro_50); }

.navbar-link {
  color: var(--jet);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  padding: 15px;
  letter-spacing: 0.08em;
  font-size: 1.3rem;
  transition: color var(--transition), transform var(--transition);
}

.navbar-link:is(:hover, :focus) { transform: translateY(-1px); }





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  isolation: isolate;
  background-image: url("./assets/images/clinic-waiting.jpg");
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding-block-end: calc(var(--section-padding) / 2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, hsla(0, 0%, 100%, 0.92), hsla(345, 26%, 94%, 0.72));
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, hsla(345, 70%, 75%, 0.26), transparent 65%);
  top: -120px;
  right: -120px;
  z-index: -1;
}

.hero-content {
  max-width: 600px;
}

.hero-content {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-title {
  max-width: 560px;
  margin-block: 0;
  font-size: clamp(3rem, 2.2vw + 1.4rem, 4.6rem);
  letter-spacing: -0.01em;
  line-height: 1.03;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker::after {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--royal-blue-light);
  opacity: 0.45;
}

.hero-lede {
  font-size: clamp(1.95rem, 1.15vw + 1.25rem, 2.35rem);
  line-height: 1.65;
  margin: 0;
  color: var(--oxford-blue-2);
  font-weight: var(--fw-500);
  max-width: 560px;
}

.hero-note {
  font-size: 1.4rem;
  color: var(--sonic-silver);
  line-height: 1.65;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 540px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--sonic-silver);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-600);
  justify-content: flex-start;
  text-align: left;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--royal-blue-light);
  opacity: 0.6;
  display: inline-block;
  margin-inline-end: 10px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 12px;
  max-width: 600px;
  margin-top: 16px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  width: 100%;
  min-height: 42px;
  background: hsla(0, 0%, 100%, 0.96);
  border: 1px solid hsla(350, 20%, 88%, 0.55);
  box-shadow: 0 12px 26px hsla(350, 25%, 60%, 0.1);
  color: var(--oxford-blue-1);
  font-weight: var(--fw-600);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  justify-content: flex-start;
}

.hero-pill ion-icon {
  font-size: 16px;
  color: var(--royal-blue-light);
}

.hero-pill span { display: inline; }

.hero-pill .pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid hsla(345, 30%, 55%, 0.6);
  background: hsla(0, 0%, 100%, 0.9);
  color: var(--royal-blue-light);
}

.hero-pill .pill-icon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.hero-highlights {
  display: grid;
  gap: 12px;
  color: var(--oxford-blue-1);
  font-weight: var(--fw-500);
  margin: 0;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-highlights ion-icon {
  color: var(--royal-blue-light);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  margin: 8px 0 0;
  max-width: none;
}

.hero-actions .primary-actions,
.hero-actions .secondary-actions {
  display: contents;
}

.hero-actions .secondary-actions {
  gap: 10px;
}

.hero-actions .btn {
  padding: 0 14px;
  font-size: 0.98rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.02em;
  min-height: 44px;
  width: auto;
  white-space: nowrap;
  flex: 0 0 auto;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  text-transform: none;
  line-height: 1;
}

.hero-actions .link-pill {
  font-size: 0.98rem;
  font-weight: var(--fw-700);
  padding: 0 14px;
  padding-inline-end: 24px;
  width: auto;
  white-space: nowrap;
  flex: 0 0 auto;
  justify-content: center;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}


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

.expertise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: var(--white);
  border: 1px solid var(--gainsboro_50);
  color: var(--oxford-blue-1);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: var(--shadow-1);
}

.badge ion-icon { color: var(--royal-blue-light); }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
}

.hero-stats li {
  background-color: var(--white);
  border: 1px solid var(--gainsboro_50);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-1);
}

.stat-value {
  color: var(--oxford-blue-1);
  font-family: var(--ff-poppins);
  font-weight: var(--fw-700);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 1.3rem;
  color: var(--sonic-silver);
  margin-block-start: 6px;
}

.hero-form {
  background-color: hsla(0, 0%, 100%, 0.9);
  max-width: 95%;
  padding: 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--gainsboro_50);
}

.hero-form .email-field {
  background-color: var(--cultured);
  color: var(--black);
  min-height: 56px;
  padding-inline: 18px;
  border-radius: 999px;
  margin-block-end: 12px;
}

.hero-form .btn { width: 100%; }

.hero-banner {
  position: relative;
}

.hero-banner img {
  border-radius: 24px;
  box-shadow: var(--shadow-3);
}

.hero-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background-color: hsla(0, 0%, 100%, 0.92);
  color: var(--oxford-blue-1);
  font-weight: var(--fw-600);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}



/*-----------------------------------*\
  #TRUST STRIP
\*-----------------------------------*/

.trust-strip {
  padding-block: 30px 10px;
  background: linear-gradient(180deg, var(--cultured) 0%, var(--white) 100%);
}

.trust-list {
  display: grid;
  gap: 18px;
}

.trust-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, hsla(350, 45%, 98%, 0.95), hsla(0, 0%, 100%, 0.9));
  border: 1px solid hsla(350, 25%, 90%, 0.7);
  box-shadow: 0 14px 34px hsla(350, 20%, 60%, 0.12);
  color: var(--oxford-blue-2);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 94px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-card:is(:hover, :focus-within) {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}

.trust-card ion-icon {
  color: var(--royal-blue-light);
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid hsla(345, 25%, 75%, 0.45);
  display: grid;
  place-items: center;
  box-shadow: none;
  --ionicon-stroke-width: 36px;
}

.trust-card > div {
  display: grid;
  gap: 4px;
}

.trust-card--center {
  justify-self: center;
  width: 100%;
  max-width: 360px;
}

.trust-card span {
  display: block;
  font-size: 1.45rem;
  font-weight: var(--fw-600);
  color: var(--oxford-blue-1);
  line-height: 1.45;
  white-space: normal;
}

.trust-card a {
  display: block;
  font-size: 1.35rem;
  font-weight: var(--fw-600);
  color: var(--oxford-blue-1);
  line-height: 1.45;
  white-space: normal;
}

.trust-card--wide {
  grid-column: span 2;
}

.trust-card span + span {
  font-size: 1.2rem;
  font-weight: var(--fw-500);
  color: var(--sonic-silver);
}

.trust-bar {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: hsla(0, 0%, 100%, 0.7);
  border: 1px solid hsla(350, 30%, 90%, 0.7);
  box-shadow: 0 16px 36px hsla(350, 25%, 65%, 0.12);
}

.trust-bar-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
}

.trust-bar-item ion-icon {
  color: var(--royal-blue-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gainsboro_50);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.trust-bar-item .trust-title {
  margin-block-end: 4px;
}

.trust-bar-item a {
  font-size: 1.3rem;
  font-weight: var(--fw-600);
  color: var(--oxford-blue-1);
  overflow-wrap: anywhere;
}

.trust-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sonic-silver);
  margin-block-end: 4px;
}



.trust-list > * { --delay: 0s; }
.trust-list > :nth-child(2) { --delay: 0.06s; }
.trust-list > :nth-child(3) { --delay: 0.12s; }
.trust-list > :nth-child(4) { --delay: 0.18s; }

.service-menu > * { --delay: 0s; }
.service-menu > :nth-child(2) { --delay: 0.05s; }
.service-menu > :nth-child(3) { --delay: 0.1s; }
.service-menu > :nth-child(4) { --delay: 0.15s; }
.service-menu > :nth-child(5) { --delay: 0.2s; }
.service-menu > :nth-child(6) { --delay: 0.25s; }
.service-menu > :nth-child(7) { --delay: 0.3s; }
.service-menu > :nth-child(8) { --delay: 0.35s; }

.experience-grid > * { --delay: 0s; }
.experience-grid > :nth-child(2) { --delay: 0.08s; }
.experience-grid > :nth-child(3) { --delay: 0.16s; }

.journey-steps > * { --delay: 0s; }
.journey-steps > :nth-child(2) { --delay: 0.06s; }
.journey-steps > :nth-child(3) { --delay: 0.12s; }
.journey-steps > :nth-child(4) { --delay: 0.18s; }

.has-scrollbar > * { --delay: 0s; }
.has-scrollbar > :nth-child(2) { --delay: 0.06s; }
.has-scrollbar > :nth-child(3) { --delay: 0.12s; }
.has-scrollbar > :nth-child(4) { --delay: 0.18s; }

.blog-list > * { --delay: 0s; }
.blog-list > :nth-child(2) { --delay: 0.08s; }
.blog-list > :nth-child(3) { --delay: 0.16s; }

.results-grid > * { --delay: 0s; }
.results-grid > :nth-child(2) { --delay: 0.05s; }
.results-grid > :nth-child(3) { --delay: 0.1s; }
.results-grid > :nth-child(4) { --delay: 0.15s; }
.results-grid > :nth-child(5) { --delay: 0.2s; }
.results-grid > :nth-child(6) { --delay: 0.25s; }



/*-----------------------------------*\
  #EXPERIENCE
\*-----------------------------------*/

.experience {
  background: linear-gradient(180deg, var(--white) 0%, var(--cultured) 100%);
}

.experience-grid {
  display: grid;
  gap: 20px;
  margin-block-start: 40px;
}

.experience-card {
  background: linear-gradient(140deg, hsla(0, 0%, 100%, 0.98), hsla(350, 45%, 98%, 0.9));
  border: 1px solid hsla(350, 30%, 90%, 0.7);
  border-radius: 22px;
  padding: 26px 24px;
  text-align: center;
  box-shadow: 0 16px 36px hsla(350, 25%, 65%, 0.16);
  transition: transform var(--transition), box-shadow var(--transition);
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 190px;
}

.experience-card ion-icon {
  font-size: 20px;
  color: var(--royal-blue-light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.9);
  border: 1px solid var(--gainsboro_50);
  display: grid;
  place-items: center;
  margin-block-end: 4px;
  box-shadow: 0 6px 16px hsla(350, 20%, 70%, 0.18);
}

.experience-card:is(:hover, :focus-within) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.experience-card .h3 {
  margin-block: 0 4px;
}

.experience-card .card-text {
  margin: 0;
  max-width: 240px;
  line-height: 1.6;
}



/*-----------------------------------*\
  #WHY
\*-----------------------------------*/

.why {
  background: linear-gradient(180deg, var(--white) 0%, var(--cultured) 100%);
}

.why-grid {
  display: grid;
  gap: 20px;
  margin-block-start: 40px;
}

.why-card {
  background: linear-gradient(140deg, hsla(0, 0%, 100%, 0.98), hsla(350, 45%, 98%, 0.9));
  border: 1px solid hsla(350, 30%, 90%, 0.7);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 36px hsla(350, 25%, 65%, 0.16);
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 190px;
}

.why-card ion-icon {
  font-size: 20px;
  color: var(--royal-blue-light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.9);
  border: 1px solid var(--gainsboro_50);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px hsla(350, 20%, 70%, 0.18);
}

.why-card .h3 { margin-block: 0 4px; }

.why-card .card-text {
  margin: 0;
  max-width: 240px;
  line-height: 1.6;
}

/*-----------------------------------*\
  #JOURNEY
\*-----------------------------------*/

.journey {
  background: linear-gradient(180deg, var(--cultured) 0%, var(--white) 100%);
}

.journey-steps {
  display: grid;
  gap: 20px;
  margin-block-start: 40px;
}

.journey-card {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 20px;
  background-color: var(--white);
  border: 1px solid var(--gainsboro_50);
  box-shadow: var(--shadow-1);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 200px;
  display: grid;
  justify-items: center;
}

.journey-card:is(:hover, :focus-within) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.journey-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 14px;
  letter-spacing: 0.04em;
}

.journey-card .h3 {
  margin-block: 0 6px;
}

.journey-card .card-text {
  margin: 0;
  max-width: 220px;
  line-height: 1.6;
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  padding-block-end: 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cultured) 100%);
}

.service-intro {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-block-end: 36px;
}

.service-grid {
  display: grid;
  gap: 40px;
}

.service-menu {
  display: grid;
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid var(--gainsboro_50);
  border-radius: 18px;
  padding: 22px 24px;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-item .card-icon {
  width: 52px;
  flex-shrink: 0;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--lavender-web), hsl(345, 40%, 90%));
}

.service-item .card-title { margin-block-end: 6px; }

.service-item:is(:hover, :focus-within) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.service-feature {
  position: relative;
  display: grid;
  gap: 18px;
}

.service-feature img {
  border-radius: 24px;
  box-shadow: var(--shadow-3);
}

.service-feature:hover img { transform: scale(1.02); }

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--gainsboro_50);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--shadow-1);
  margin: -28px 24px 0;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  text-align: left;
}

.feature-card .section-subtitle {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.feature-card .h3 {
  margin: 0;
}

.feature-card .card-text {
  margin: 0;
  color: var(--sonic-silver);
  line-height: 1.7;
}

.feature-card .btn {
  margin-top: 6px;
  width: max-content;
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  padding-block-end: 0;
  background-color: var(--white);
}

.about-banner { margin-block-end: 50px; }

.about-banner img {
  border-radius: 24px;
  box-shadow: var(--shadow-3);
}

.about-banner:hover img { transform: scale(1.02); }

.about .section-text-1 { margin-block: 25px 15px; }

.about .btn {
  font-size: unset;
  max-width: max-content;
  margin-block-start: 30px;
  padding-inline: 15px;
}





/*-----------------------------------*\
  #DOCTOR
\*-----------------------------------*/

.doctor .section-title { margin-block-end: 40px; }

.doctor { background: linear-gradient(180deg, var(--cultured) 0%, var(--white) 100%); }

.doctor-card .card-banner {
  border-radius: 20px;
  overflow: hidden;
  margin-block-end: 25px;
}

.doctor-card {
  padding: 26px;
  border: 1px solid var(--gainsboro_50);
  border-radius: 20px;
  text-align: center;
  min-height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.doctor-card .card-title {
  font-size: var(--fs-4);
  transition: var(--transition);
}

.doctor-card:is(:hover, :focus-within) .card-title { color: var(--royal-blue-light); }

.doctor-card .card-subtitle {
  color: var(--royal-blue-light);
  margin-block: 10px 15px;
}

.doctor-card:is(:hover, :focus-within) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.doctor-card:is(:hover, :focus-within) .img-cover { transform: scale(1.05); }

.doctor-card .card-social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.doctor-card .card-social-link {
  background-color: var(--lavender-web);
  color: var(--royal-blue-light);
  font-size: 16px;
  padding: 12px;
  border-radius: 50%;
  transition: var(--transition);
}

.doctor-card .card-social-link:is(:hover, :focus) {
  background-color: var(--royal-blue-light);
  color: var(--white);
}

.has-scrollbar {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  margin-inline: 15px;
  padding-block-end: 40px;
  margin-block-end: -20px;
  scroll-snap-type: inline mandatory;
}

.scrollbar-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar { height: 10px; }

.has-scrollbar::-webkit-scrollbar-track {
  background-color: var(--light-gray);
  border-radius: var(--radius-4);
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--royal-blue-light);
  border-radius: var(--radius-4);
}

.has-scrollbar::-webkit-scrollbar-button { width: calc(25% - 30px); }





/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta {
  background: linear-gradient(120deg, hsl(345, 30%, 28%) 0%, hsl(220, 18%, 14%) 100%);
  color: var(--white);
}

.cta-banner { margin-block-end: 50px; }

.cta-banner img {
  border-radius: 24px;
  box-shadow: var(--shadow-3);
}

.cta-banner:hover img { transform: scale(1.02); }

.cta .section-subtitle { text-transform: capitalize; }

.cta .section-title {
  color: var(--white);
  font-size: var(--fs-3);
  margin-block-end: 30px;
}

.cta .btn { max-width: max-content; }

.cta-actions .btn {
  padding: 14px 26px;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 40px hsla(345, 45%, 35%, 0.45);
}

.cta-actions .btn.btn-ghost {
  background: hsla(0, 0%, 100%, 0.12);
  color: var(--white);
  border: 1px solid hsla(0, 0%, 100%, 0.35);
  box-shadow: 0 16px 36px hsla(0, 0%, 100%, 0.08);
}

.cta-actions .btn:is(:hover, :focus) {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px hsla(345, 45%, 30%, 0.5);
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .section-title { margin-block-end: 40px; }

.blog-list {
  display: grid;
  gap: 30px;
}

.blog-card {
  border-radius: 20px;
  box-shadow: var(--shadow-5);
  background-color: var(--white);
  border: 1px solid var(--gainsboro_50);
}

.blog-card .card-banner {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.blog-card .card-banner img { transition: var(--transition); }

.blog-card:is(:hover, :focus-within) .card-banner img { transform: scale(1.1); }

.blog-card .card-badge {
  background-color: var(--royal-blue-light);
  color: var(--white);
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 5px;
  padding: 10px 15px;
  border-radius: var(--radius-6);
}

.blog-card .card-content { padding: 30px; }

.blog-card .card-title { transition: var(--transition); }

.blog-card .card-title:is(:hover, :focus) { color: var(--royal-blue-light); }

.blog-card .card-text { margin-block: 15px; }

.blog-card .card-link {
  position: relative;
  color: var(--royal-blue-light);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  width: max-content;
  transition: var(--transition);
}

.blog-card .card-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--royal-blue-light);
  transition: var(--transition);
}

.blog-card .card-link:is(:hover, :focus) { color: var(--oxford-blue-1); }

.blog-card .card-link:is(:hover, :focus)::after { background-color: var(--oxford-blue-1); }





/*-----------------------------------*\
  #RESULTS
\*-----------------------------------*/

.results .section-title { margin-block-end: 36px; }

.results { background: linear-gradient(180deg, var(--white) 0%, var(--cultured) 100%); }

.results-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  max-width: 1200px;
  margin: 0 auto;
}

.result-item { height: 100%; }

.result-item.is-hidden { display: none; }

.results-grid.is-expanded .result-item.is-hidden { display: block; }

.result-card {
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-5);
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--gainsboro_50);
  display: flex;
  flex-direction: column;
}

.result-card .card-content {
  padding: 20px 25px;
  display: grid;
  gap: 6px;
}

.result-card .card-text { margin-block: 0; }

.case-desc {
  margin-block: 0;
  font-size: 1.25rem;
  color: var(--sonic-silver);
  line-height: 1.6;
}

.results .img-holder {
  aspect-ratio: 4 / 5;
}

.results-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  --ba-pos: 55%;
  background-color: var(--light-gray);
  transition: transform var(--transition);
  min-height: 240px;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.ba-after {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px var(--black_8);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--ba-pos);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gainsboro_50);
  box-shadow: var(--shadow-1);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--oxford-blue-1);
  pointer-events: none;
}

.ba-card:focus-within .ba-handle {
  box-shadow: 0 0 0 3px var(--flickr-blue_30);
}

.ba-handle::before { content: "<"; margin-inline-end: 4px; }
.ba-handle::after { content: ">"; margin-inline-start: 4px; }

.ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 2;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  background: transparent;
  touch-action: none;
}

.ba-label {
  position: absolute;
  top: 12px;
  padding: 6px 10px;
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 999px;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxford-blue-1);
  pointer-events: none;
}

.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

.result-card:is(:hover, :focus-within) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.result-card:is(:hover, :focus-within) .ba-card { transform: scale(1.01); }



/*-----------------------------------*\
  #REVIEWS
\*-----------------------------------*/

.reviews {
  background: linear-gradient(180deg, var(--white) 0%, var(--cultured) 100%);
}

.reviews .section-text {
  max-width: 640px;
  margin: 0 auto 30px;
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding: 18px 12px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--gainsboro_50);
  box-shadow: var(--shadow-1);
  max-width: 720px;
  margin: 0 auto 30px;
}

.reviews-score,
.reviews-count {
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 8px 18px;
}

.reviews-score {
  border-right: 1px solid var(--gainsboro_50);
}

.score-value,
.count-value {
  font-size: 3rem;
  font-weight: var(--fw-700);
  color: var(--oxford-blue-1);
}

.score-stars {
  color: var(--royal-blue-light);
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.score-label,
.count-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sonic-silver);
}

@media (max-width: 620px) {
  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .reviews-score {
    border-right: none;
    border-bottom: 1px solid var(--gainsboro_50);
  }
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.reviews-grid {
  display: grid;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 900px;
}

.review-card {
  border: 1px solid var(--gainsboro_50);
  border-radius: 18px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-1);
  display: grid;
  gap: 8px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--oxford-blue-2);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: var(--fw-700);
  color: var(--oxford-blue-1);
  background: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-meta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-weight: var(--fw-700);
}

.review-rating {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal-blue-light);
}

.review-date {
  color: var(--sonic-silver);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card.is-expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-more {
  justify-self: flex-start;
  border: none;
  background: transparent;
  color: var(--royal-blue-light);
  font-weight: var(--fw-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
  padding: 4px 0;
  cursor: pointer;
}



/*-----------------------------------*\
  #FAQ
\*-----------------------------------*/

.faq {
  background: linear-gradient(180deg, var(--cultured) 0%, var(--white) 100%);
}

.faq-list {
  max-width: 920px;
  margin: 40px auto 0;
  display: grid;
  gap: 16px;
  align-items: start;
}

.faq-item {
  border: 1px solid hsla(350, 30%, 90%, 0.7);
  border-radius: 18px;
  padding: 18px 20px;
  background: linear-gradient(140deg, hsla(0, 0%, 100%, 0.98), hsla(350, 45%, 98%, 0.9));
  box-shadow: 0 12px 26px hsla(350, 25%, 65%, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  align-self: start;
}

.faq-item summary {
  cursor: pointer;
  font-weight: var(--fw-600);
  color: var(--oxford-blue-2);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--white);
  font-weight: var(--fw-700);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient);
  box-shadow: 0 6px 16px hsla(350, 25%, 65%, 0.18);
}

.faq-item[open] summary::after { content: "-"; }

.faq-item[open] {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px hsla(350, 25%, 65%, 0.18);
  border-color: hsla(350, 30%, 86%, 0.9);
}

.faq-item .card-text {
  margin-block-start: 10px;
  color: var(--sonic-silver);
  line-height: 1.7;
}



/*-----------------------------------*\
  #WIDGET
\*-----------------------------------*/

.conversion-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: grid;
  gap: 12px;
  z-index: 6;
}

.widget-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: var(--white);
  border: 1px solid var(--gainsboro_50);
  box-shadow: 0 16px 30px hsla(350, 20%, 60%, 0.18);
  font-weight: var(--fw-700);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--oxford-blue-1);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.widget-btn ion-icon {
  font-size: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.22);
  display: grid;
  place-items: center;
}

.widget-btn.whatsapp {
  background: linear-gradient(120deg, hsl(136, 52%, 52%), hsl(136, 46%, 42%));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 32px hsla(136, 50%, 40%, 0.35);
}

.widget-btn.appointment {
  background-image: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 32px hsla(345, 45%, 55%, 0.35);
}

.widget-btn:is(:hover, :focus) {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px hsla(350, 25%, 55%, 0.28);
}



/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact-card {
  display: grid;
  gap: 30px;
  background: linear-gradient(120deg, var(--white) 0%, hsl(345, 35%, 96%) 100%);
  box-shadow: var(--shadow-5);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--gainsboro_50);
}

.contact-details {
  display: grid;
  gap: 15px;
  margin-block: 20px 30px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--oxford-blue-2);
  font-weight: var(--fw-500);
}

.contact-details ion-icon {
  color: var(--royal-blue-light);
  font-size: 20px;
}

.contact-details a { color: inherit; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.contact-media img { border-radius: var(--radius-4); }



/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  background: linear-gradient(120deg, hsl(220, 18%, 14%) 0%, hsl(345, 22%, 18%) 100%);
  color: var(--light-steel-blue);
}

.footer-top .container {
  display: grid;
  gap: 30px;
}

.footer-brand .logo { color: var(--white); }

.footer-text {
  line-height: 1.6;
  margin-block: 15px;
}

.schedule {
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-icon,
.footer-item .item-icon {
  background-image: var(--gradient);
  color: var(--white);
  font-size: 18px;
  padding: 11px;
  border-radius: 50%;
}

.schedule .span,
.footer-item .item-text { line-height: 1.6; }

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-poppins);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  margin-block-end: 10px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-block: 10px;
  transition: var(--transition);
}

.footer-link ion-icon {
  color: var(--royal-blue-light);
  --ionicon-stroke-width: 50px;
}

.footer-link:is(:hover, :focus) { color: var(--white); }

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item:not(:first-child) { margin-block-start: 20px; }

.footer-bottom {
  background-color: var(--oxford-blue-3);
  padding-block: 50px;
  text-align: center;
}

.copyright {
  color: var(--white);
  line-height: 1.6;
  margin-block-end: 25px;
}

.footer .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer .social-link {
  padding: 11px;
  background-color: hsla(0, 0%, 100%, 0.2);
  color: var(--white);
  font-size: 18px;
  border-radius: 50%;
}

.footer .social-link:is(:hover, :focus) { background-image: var(--gradient); }





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-image: var(--gradient);
  font-size: 18px;
  color: var(--white);
  padding: 14px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.back-top-btn.active {
  transform: translateY(-10px);
  visibility: visible;
  opacity: 1;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.6rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * BLOG
   */

  .blog-card .h3 { --fs-5: 2.6rem; }



  /**
   * FOOTER
   */

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

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 5.2rem;

  }



  /**
   * RESET
   */

  body { font-size: 1.6rem; }



  /**
   * REUSED STYLE
   */

  .container { max-width: 750px; }

  .section-subtitle { --fs-6: 2.2rem; }



  /**
   * HERO
   */

  .hero { overflow: hidden; }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 14px;
  }

  .hero-content { margin-block-end: 0; }

  .hero-form { position: relative; }

  .hero-form .email-field {
    margin-block-end: 0;
    padding-inline-end: 170px;
  }

  .hero-form .btn {
    width: auto;
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
  }

  .hero-banner { margin-inline-end: -60px; }

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

  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

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

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

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

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

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



  /**
   * SERVICE
   */

  .service-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }



  /**
   * DOCTOR
   */

  .scrollbar-item { min-width: calc(50% - 15px); }



  /**
   * CTA
   */

  .cta { padding-block: 0; }

  .cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 60px;
  }

  .cta-banner { margin-block-end: 0; }

  .cta-content { padding-block: 60px; }



  /**
   * BLOG
   */

  .blog-list { grid-template-columns: 1fr 1fr; }



  /**
   * RESULTS
   */

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

  .result-item.featured,
  .result-item.wide { grid-column: span 2; }



  /**
   * CONTACT
   */

  .contact-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * FOOTER
   */

  .footer-bottom { padding-block: 30px; }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright { margin-block-end: 0; }



  /**
   * BACK TO TOP
   */

  .back-top-btn {
    bottom: 70px;
    right: 50px;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 6.4rem;
    --fs-1: 5rem;
    --fs-3: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 980px; }



  /**
   * HEADER
   */

  .header-top {
    display: block;
    background-color: hsla(0, 0%, 100%, 0.95);
    color: var(--oxford-blue-1);
    padding-block: 10px;
    border-bottom: 1px solid var(--gainsboro_50);
    backdrop-filter: blur(10px);
  }

  .header-top :is(.container, .social-list),
  .contact-list,
  .contact-item {
    display: flex;
    align-items: center;
  }

  .header-top .container {
    justify-content: space-between;
    gap: 16px;
  }

  .contact-list {
    gap: 0;
    flex-wrap: wrap;
  }

  .contact-item {
    gap: 8px;
    padding: 2px 14px;
  }

  .contact-item + .contact-item {
    border-left: 1px solid var(--gainsboro_50);
  }

  .contact-item ion-icon {
    color: var(--royal-blue-light);
    --ionicon-stroke-width: 40px;
    font-size: 16px;
  }

  .contact-link {
    font-size: 1.3rem;
    font-weight: var(--fw-600);
    color: var(--oxford-blue-1);
  }

  .header-top .social-list { gap: 10px; }

  .header-top .social-link {
    font-size: 1.6rem;
    color: var(--oxford-blue-1);
    transition: color var(--transition);
  }

  .header-top .social-link:is(:hover, :focus) { color: var(--royal-blue-light); }

  .header-bottom {
    top: 58px;
    padding-block: 20px;
  }

  .header-bottom.active { top: -95px; }

  .nav-toggle-btn { display: none; }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .navbar-list > li:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--oxford-blue-1);
    font-family: var(--ff-poppins);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.98rem;
    line-height: 1;
    white-space: nowrap;
    transition: var(--transition);
  }

  .navbar-link:is(:hover, :focus) { color: var(--royal-blue-light); }

  .header-bottom .btn {
    display: block;
    padding: 10px 16px;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
  }

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

  .hero-actions {
    flex-wrap: wrap;
  }



  /**
   * SERVICE
   */

  .service-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .service-feature { align-self: start; }



  /**
   * TRUST STRIP
   */

  .trust-list { grid-template-columns: repeat(6, minmax(0, 1fr)); }

  .trust-card { grid-column: span 2; }

  .trust-card--ig { grid-column: 2 / span 2; }

  .trust-card--email { grid-column: 4 / span 2; }



  /**
   * JOURNEY
   */

  .journey-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-banner { margin-block-end: 0; }



  /**
   * DOCTOR
   */

  .scrollbar-item { min-width: 0; }

  .has-scrollbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    overflow: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding-block-end: 0;
  }



  /**
   * CTA
   */

  .cta-content { padding-block: 80px; }



  /**
   * BLOG
   */

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



  /**
   * REVIEWS
   */

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



  /**
   * RESULTS
   */

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

  .result-item.featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .result-item.tall { grid-row: span 2; }

  .result-item.wide { grid-column: span 2; }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 0.5fr 0.6fr 0.75fr; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 8.4rem;
    --fs-1: 5.8rem;
    --fs-3: 5rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }



  /**
   * HEADER
   */

  .contact-list { gap: 30px; }

  .trust-list { grid-template-columns: repeat(6, minmax(0, 1fr)); }

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

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .link-pill {
    width: 100%;
  }

  .header-bottom .btn {
    padding: 11px 18px;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
  }

  .header-bottom > .container {
    gap: 40px;
    align-items: center;
  }

  .navbar-list { gap: 14px; }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.85fr 1fr;
    gap: 100px;
  }

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



  /**
   * DOCTOR
   */

  .doctor { padding-block-end: 180px; }

  .scrollbar-item { min-width: 0; }

  .has-scrollbar {
    padding-block-end: 0;
    margin-block-end: 0;
  }



  /**
   * RESULTS
   */

  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1200px;
  }



  /**
   * CTA
   */

  .cta .container { align-items: center; }

  .cta-banner { margin-block-start: -120px; }

}



/**
 * responsive for smaller than 575px screen
 */

@media (max-width: 575px) {
  .conversion-widget {
    left: 12px;
    bottom: 12px;
  }

  .widget-btn span { display: none; }

  .hero-actions .primary-actions,
  .hero-actions .secondary-actions {
    display: contents;
  }

  .hero-actions .btn,
  .hero-actions .link-pill {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    max-width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
  z-index: 7;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: min(520px, 92vw);
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-3);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 8;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gainsboro_50);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
}

.booking-form {
  display: grid;
  gap: 14px;
  margin-block-start: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: var(--fw-600);
  color: var(--oxford-blue-2);
}

.booking-form input,
.booking-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--gainsboro_50);
  background: var(--cultured);
}

.booking-form .btn { width: 100%; }
