@font-face {
  font-family: "DenticareFA";
  src: url("../assets/fonts/FontAwesome.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "DenticareBrands";
  src: url("../assets/fonts/FontAwesome5Brands.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "DenticareMedical";
  src: url("../assets/fonts/Medical.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "DenticareSupport";
  src: url("../assets/fonts/HelpAndSupport.woff") format("woff");
  font-display: block;
}

@font-face {
  font-family: "DenticareDentist";
  src: url("../assets/fonts/Dentist1.woff") format("woff");
  font-display: block;
}

:root {
  --font-source: Arial, Helvetica, sans-serif;
  --font-yantra: Arial, Helvetica, sans-serif;
  --blue: #0e54ae;
  --blue-deep: #073d84;
  --blue-bright: #179ddd;
  --pink: #a54579;
  --ink: #182234;
  --muted: #667085;
  --line: #e6eaf0;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(13, 63, 125, 0.14);
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-source, Arial), "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body,
button,
input,
select {
  font-family: var(--font-source, Arial), "Source Sans Pro", Arial, Helvetica, sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(23, 157, 221, 0.55);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
.button,
.main-nav,
.eyebrow,
.eyebrow-light,
.hero-kicker {
  font-family: var(--font-yantra, Arial), Yantramanav, Arial, Helvetica, sans-serif;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--blue-deep);
  color: white;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.icon-fa {
  font-family: "DenticareFA";
}

.icon-brands {
  font-family: "DenticareBrands";
}

.icon-medical {
  font-family: "DenticareMedical";
}

.icon-support {
  font-family: "DenticareSupport";
}

.icon-dentist {
  font-family: "DenticareDentist";
}

.site-header {
  position: relative;
  z-index: 50;
  background: white;
}

.topbar {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 170px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 66px);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  transition: color 0.2s ease;
}

a.info-item:hover {
  color: var(--blue);
}

.info-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 25px;
}

.info-item strong,
.info-item small {
  display: block;
}

.info-item strong {
  color: #181818;
  font-family: var(--font-yantra), Yantramanav, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

.info-item small {
  margin-top: 4px;
  color: #656565;
  font-size: 13px;
}

.nav-shell {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  background: rgba(255, 255, 255, 0.98);
}

.nav-row {
  min-height: 61px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 55px);
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: stretch;
}

.nav-actions a {
  width: 40px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 16px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-actions a:hover {
  color: var(--pink);
  background: var(--soft);
}

.nav-actions .search-link {
  width: 60px;
  margin-left: 8px;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  color: #1f1f1f;
  font-size: 18px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 760px;
  overflow: hidden;
  background: #eef3f7;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-position: 52% top;
  background-size: cover;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 251, 253, 0.98) 0%,
    rgba(248, 251, 253, 0.82) 32%,
    rgba(248, 251, 253, 0.12) 61%,
    rgba(248, 251, 253, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 128px;
  max-width: 1260px;
}

.hero-content > * {
  width: min(620px, 54%);
}

.hero-kicker {
  margin-bottom: 7px;
  color: var(--pink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.hero h1 {
  margin-bottom: 30px;
  color: var(--blue);
  font-size: clamp(4rem, 6.7vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
}

.hero-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.hero-detail {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-right: 8px;
}

.hero-detail > .icon {
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  color: var(--pink);
  font-size: 43px;
}

.hero-detail strong,
.hero-detail small {
  display: block;
}

.hero-detail strong {
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-family: var(--font-yantra), Yantramanav, sans-serif;
  font-size: 19px;
  line-height: 1.15;
}

.hero-detail small {
  color: #4f5967;
  font-size: 14px;
  line-height: 1.35;
}

.button {
  min-height: 55px;
  padding: 0 27px;
  border: 0;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(110deg, var(--blue), #168fcf);
  box-shadow: 0 10px 25px rgba(14, 84, 174, 0.22);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 14px 32px rgba(14, 84, 174, 0.34);
}

.button-white {
  background: white;
  color: var(--blue);
}

.button-outline {
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
}

.button-outline:hover {
  background: var(--blue);
  color: white;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  bottom: 105px;
  left: 50%;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.35);
}

.intro-booking {
  position: relative;
  z-index: 8;
  margin-top: -78px;
  padding-bottom: 78px;
  background:
    linear-gradient(rgba(244, 247, 251, 0.9), rgba(244, 247, 251, 0.9)),
    url("../assets/background-clinic.jpg") center / cover;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  box-shadow: var(--shadow);
}

.testimonial-card {
  position: relative;
  min-height: 360px;
  padding: 58px 58px 42px;
  background: linear-gradient(145deg, #073f8c, #0e75be);
  color: white;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 9px;
  left: 30px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 1;
}

.testimonial-card blockquote {
  position: relative;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-signature {
  display: flex;
  align-items: center;
  gap: 17px;
}

.testimonial-signature img {
  width: 92px;
  height: 45px;
  object-fit: contain;
}

.testimonial-signature strong,
.testimonial-signature small {
  display: block;
}

.testimonial-signature strong {
  color: white;
}

.testimonial-signature small {
  color: rgba(255, 255, 255, 0.65);
}

.quick-booking-card {
  position: relative;
  min-height: 360px;
  padding: 46px 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 67%, rgba(255, 255, 255, 0.25) 100%),
    url("../assets/booking.avif") right center / 48% auto no-repeat;
  color: var(--ink);
}

.quick-booking-card::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 290px;
  height: 290px;
  border: 65px solid rgba(14, 84, 174, 0.04);
  border-radius: 50%;
  content: "";
}

.quick-booking-copy,
.quick-form {
  position: relative;
  z-index: 2;
}

.eyebrow,
.eyebrow-light {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #c4e9ff;
}

.quick-booking-card h2 {
  margin-bottom: 4px;
  font-size: 38px;
  color: var(--blue);
  line-height: 1.05;
}

.quick-booking-card p {
  margin-bottom: 23px;
  color: var(--muted);
}

.quick-booking-card .eyebrow-light {
  color: var(--pink);
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.quick-form label:last-of-type {
  grid-column: 1 / 2;
}

.quick-form .button {
  align-self: end;
}

label > span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d8dfea;
  border-radius: 2px;
  background: white;
  color: #202939;
}

.quick-form input,
.quick-form select {
  border-color: #d8dfea;
  background: rgba(255, 255, 255, 0.96);
}

.section {
  padding: 104px 0;
}

.section-heading h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(2.6rem, 4.6vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.section-heading h2 strong {
  display: block;
  font-weight: 700;
}

.section-heading > p,
.centered-heading > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.heading-row {
  margin-bottom: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.heading-row h2 {
  margin-bottom: 0;
}

.text-link,
.team-copy > a,
.service-content > a {
  color: var(--blue);
  font-family: var(--font-yantra), Yantramanav, sans-serif;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.text-link {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink);
  white-space: nowrap;
}

.services-section {
  background: white;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 470px;
  background: #bb73a4;
  box-shadow: 0 10px 32px rgba(95, 44, 83, 0.14);
}

.service-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 84, 174, 0), rgba(14, 84, 174, 0.28));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-card:hover .service-shade {
  opacity: 1;
}

.service-content {
  position: relative;
  min-height: 280px;
  padding: 58px 27px 30px;
  color: white;
}

.service-icon {
  position: absolute;
  top: -42px;
  left: 27px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: 0 10px 25px rgba(62, 28, 54, 0.17);
  color: var(--blue);
  font-size: 48px;
}

.service-number {
  position: absolute;
  top: 12px;
  right: 17px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-yantra), Yantramanav, sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
}

.service-content h3 {
  position: relative;
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.1;
}

.service-content p {
  position: relative;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.service-content > a {
  position: relative;
  color: white;
  font-size: 13px;
}

.team-intro {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  background: url("../assets/background-team.jpg") center / cover no-repeat;
  color: white;
}

.team-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 53, 116, 0.97) 0%, rgba(9, 79, 158, 0.87) 45%, rgba(8, 80, 160, 0.18) 100%);
}

.team-intro-content {
  position: relative;
  z-index: 1;
}

.team-intro-content > * {
  max-width: 570px;
}

.team-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.team-intro h2 strong {
  display: block;
}

.team-intro p {
  color: rgba(255, 255, 255, 0.83);
  font-size: 19px;
  line-height: 1.75;
}

.team-intro-content > img {
  width: 100px;
  margin-top: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.team-section {
  padding-top: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-card {
  min-width: 0;
  background: white;
  box-shadow: 0 8px 32px rgba(18, 52, 91, 0.1);
}

.team-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.team-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.team-card:hover .team-photo > img {
  transform: scale(1.04);
}

.team-social {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  gap: 6px;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.team-card:hover .team-social,
.team-card:focus-within .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
}

.team-copy {
  padding: 27px 26px 30px;
}

.team-copy > span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-copy h3 {
  margin: 3px 0 12px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1.1;
}

.team-copy p {
  min-height: 92px;
  color: var(--muted);
}

.team-copy > a {
  font-size: 13px;
}

.appointment-section {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: url("../assets/background-doctor.jpg") center / cover no-repeat;
}

.appointment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 247, 252, 0.99) 0%, rgba(242, 247, 252, 0.93) 52%, rgba(242, 247, 252, 0.32) 100%);
}

.appointment-grid {
  position: relative;
  z-index: 1;
  min-height: 850px;
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  align-items: center;
}

.appointment-panel {
  grid-column: 2;
  grid-row: 1;
  max-width: 680px;
  padding: 76px 0 76px 42px;
}

.appointment-panel h2 {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(3rem, 5vw, 4.3rem);
  font-weight: 400;
  line-height: 0.98;
}

.appointment-panel h2 strong {
  display: block;
}

.appointment-panel > p {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.appointment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.appointment-form label:last-of-type {
  grid-column: 1 / 2;
}

.appointment-form .button {
  align-self: end;
}

.doctor-visual {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  height: 810px;
}

.doctor-visual img {
  position: absolute;
  right: -28px;
  bottom: -12px;
  width: 650px;
  max-width: none;
  max-height: 820px;
  object-fit: contain;
}

.solutions-section {
  background: white;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.centered-heading h2 strong {
  display: inline;
}

.centered-heading > p {
  margin-inline: auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-card {
  min-height: 205px;
  padding: 35px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 19px;
  background: white;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
  position: relative;
  z-index: 2;
  background: var(--blue);
  box-shadow: var(--shadow);
  color: white;
  transform: translateY(-4px);
}

.solution-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(14, 84, 174, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 35px;
}

.solution-card:hover .solution-icon {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.solution-card h3 {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.1;
}

.solution-card:hover h3 {
  color: white;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.solution-card:hover p {
  color: rgba(255, 255, 255, 0.79);
}

.centered-action {
  margin-top: 42px;
  text-align: center;
}

.contact-lead {
  padding-top: 94px;
  padding-bottom: 70px;
  background: var(--soft);
}

.contact-lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 80px;
}

.contact-lead .section-heading h2 {
  margin-bottom: 0;
}

.contact-lead-grid > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 19px;
}

.map-section {
  position: relative;
  height: 660px;
  background: #dce6ee;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.03);
}

.hours-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hours-card {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(470px, 44vw);
  padding: 47px 50px;
  background: linear-gradient(145deg, rgba(4, 64, 145, 0.98), rgba(17, 151, 214, 0.97));
  box-shadow: 0 22px 55px rgba(5, 49, 105, 0.3);
  color: white;
  pointer-events: auto;
  transform: translateY(-50%);
}

.hours-icon {
  position: absolute;
  top: 38px;
  right: 42px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 88px;
}

.hours-card h2 {
  position: relative;
  margin-bottom: 6px;
  font-size: 34px;
}

.hours-card > p {
  position: relative;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.hours-list {
  position: relative;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-row {
  min-height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.hours-row strong {
  color: #c9edff;
  font-size: 14px;
}

.contact-cards-section {
  padding: 72px 0 90px;
  background: white;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contact-cards article {
  min-width: 0;
  padding: 13px 30px 5px;
  border-right: 1px solid var(--line);
}

.contact-cards article:first-child {
  padding-left: 0;
}

.contact-cards article:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 17px;
  border: 1px solid rgba(14, 84, 174, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 30px;
}

.contact-cards h3 {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 21px;
}

.contact-cards a {
  display: block;
  color: var(--pink);
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  color: var(--ink);
}

.footer-main {
  padding: 78px 0 70px;
  background:
    linear-gradient(110deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.95)),
    url("../assets/footer-pattern.png") left center / auto 100% no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.05fr 1fr;
  gap: 48px;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid p {
  color: var(--muted);
}

.footer-about > img {
  width: 170px;
  height: 78px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 3px;
  background: white;
  object-fit: contain;
}

.footer-about > a {
  display: block;
  margin-top: 7px;
  color: var(--blue);
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--pink);
  transform: translateX(4px);
}

.footer-awards img {
  width: 220px;
  margin-top: 16px;
  opacity: 0.92;
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(14, 84, 174, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
}

.footer-bottom {
  background: #06376f;
}

.footer-bottom .container {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom a {
  color: white;
  font-family: var(--font-yantra), Yantramanav, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: 3px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #24d366;
  box-shadow: 0 12px 30px rgba(13, 72, 42, 0.26);
  color: white;
  font-size: 29px;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.form-notice {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 98px;
  width: min(440px, calc(100vw - 48px));
  padding: 18px 52px 18px 20px;
  border-left: 5px solid #24d366;
  background: white;
  box-shadow: var(--shadow);
  color: #344054;
}

.form-notice button {
  position: absolute;
  top: 9px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 40px, 1000px);
  }

  .topbar-info {
    gap: 26px;
  }

  .info-item {
    min-width: 220px;
  }

  .main-nav {
    gap: 27px;
  }

  .hero {
    height: 710px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7.2vw, 5rem);
  }

  .intro-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .testimonial-card {
    padding-inline: 38px;
  }

  .quick-booking-card {
    padding-inline: 38px;
  }

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

  .team-copy p {
    min-height: auto;
  }

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

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .contact-cards article {
    padding: 28px 32px;
    border-bottom: 1px solid var(--line);
  }

  .contact-cards article:first-child {
    padding-left: 32px;
  }

  .contact-cards article:nth-child(2) {
    border-right: 0;
  }

  .contact-cards article:nth-child(3),
  .contact-cards article:nth-child(4) {
    border-bottom: 0;
  }

  .contact-cards article:last-child {
    padding-right: 32px;
  }

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

@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .topbar {
    min-height: 78px;
  }

  .brand {
    width: 142px;
  }

  .brand img {
    height: 65px;
  }

  .topbar-info .info-item:last-child {
    display: none;
  }

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

  .info-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 21px;
  }

  .info-item strong {
    font-size: 17px;
  }

  .info-item small {
    display: none;
  }

  .nav-row {
    min-height: 58px;
    align-items: center;
  }

  .menu-toggle {
    width: 46px;
    height: 44px;
    padding: 10px;
    border: 0;
    display: grid;
    align-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 25px;
    height: 2px;
    display: block;
    background: var(--blue);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    padding: 0 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    background: white;
    box-shadow: 0 12px 35px rgba(25, 42, 66, 0.14);
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 390px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .main-nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .nav-actions a:not(.search-link) {
    display: none;
  }

  .nav-actions .search-link {
    height: 58px;
  }

  .hero {
    height: 760px;
  }

  .hero-slide {
    background-position: 64% top;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(248, 251, 253, 0.98) 0%, rgba(248, 251, 253, 0.84) 60%, rgba(248, 251, 253, 0.18) 100%);
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-content > * {
    width: min(590px, 82%);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 11vw, 4.9rem);
  }

  .hero-details {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .hero-dots {
    bottom: 92px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .quick-booking-card {
    min-height: 430px;
  }

  .section {
    padding: 82px 0;
  }

  .heading-row {
    display: block;
  }

  .heading-row .text-link {
    margin-top: 26px;
    display: inline-flex;
  }

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

  .team-intro {
    min-height: 520px;
    background-position: 64% center;
  }

  .team-intro-overlay {
    background: linear-gradient(90deg, rgba(4, 53, 116, 0.98) 0%, rgba(9, 79, 158, 0.82) 68%, rgba(8, 80, 160, 0.38) 100%);
  }

  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .doctor-visual {
    display: none;
  }

  .appointment-panel {
    grid-column: 1;
    grid-row: 1;
    max-width: 680px;
    padding-left: 0;
  }

  .contact-lead-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .map-section {
    height: auto;
    padding-bottom: 0;
    background: var(--soft);
  }

  .map-frame {
    height: 460px;
  }

  .hours-wrap {
    position: relative;
    inset: auto;
    margin-top: -60px;
    padding-bottom: 60px;
  }

  .hours-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  .topbar {
    gap: 8px;
  }

  .brand {
    width: 122px;
  }

  .info-item {
    gap: 8px;
  }

  .info-icon {
    display: none;
  }

  .info-item strong {
    font-size: 14px;
  }

  .hero {
    height: 690px;
  }

  .hero-slide {
    background-position: 69% top;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(248, 251, 253, 0.98) 0%, rgba(248, 251, 253, 0.91) 72%, rgba(248, 251, 253, 0.34) 100%);
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero-content > * {
    width: 94%;
  }

  .hero-kicker {
    font-size: 1.55rem;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.9rem, 15vw, 4rem);
  }

  .hero-detail:nth-child(2) {
    display: none;
  }

  .hero-details {
    margin-bottom: 28px;
  }

  .hero-dots {
    bottom: 83px;
  }

  .intro-booking {
    margin-top: -58px;
  }

  .testimonial-card,
  .quick-booking-card {
    padding: 40px 24px;
  }

  .testimonial-card blockquote {
    font-size: 18px;
  }

  .quick-form,
  .appointment-form {
    grid-template-columns: 1fr;
  }

  .quick-form label:last-of-type,
  .appointment-form label:last-of-type {
    grid-column: auto;
  }

  .section-heading h2,
  .appointment-panel h2,
  .team-intro h2 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .service-card {
    height: 440px;
  }

  .service-content {
    padding: 72px 24px 30px;
  }

  .team-intro {
    min-height: 500px;
    background-position: 67% center;
  }

  .team-intro-content > * {
    max-width: 92%;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .appointment-section,
  .appointment-grid {
    min-height: auto;
  }

  .appointment-panel {
    padding: 74px 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 165px;
  }

  .map-frame {
    height: 390px;
  }

  .hours-wrap {
    margin-top: -35px;
  }

  .hours-card {
    padding: 38px 25px;
  }

  .hours-icon {
    right: 20px;
  }

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

  .contact-cards article,
  .contact-cards article:first-child,
  .contact-cards article:last-child {
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-cards article:last-child {
    border-bottom: 0;
  }

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

  .footer-bottom .container {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }

  .form-notice {
    right: 12px;
    bottom: 88px;
    width: calc(100vw - 24px);
  }
}

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

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


.map-fallback {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 10px 15px;
  border-radius: 4px;
  background: white;
  box-shadow: 0 8px 24px rgba(5, 49, 105, 0.2);
  color: var(--blue);
  font-weight: 700;
}

.form-notice[hidden] {
  display: none !important;
}


/* Controles da versao HTML5 publicavel */
button.search-link {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

:focus-visible {
  outline: 3px solid #073d84;
  outline-offset: 3px;
}

.hero-dots {
  gap: 1px;
}

.hero-dots button,
.hero-dots button.is-active {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  transform: none;
}

.hero-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-dots button.is-active::before {
  border-color: var(--pink);
  background: var(--pink);
  transform: translate(-50%, -50%) scale(1.35);
}

.carousel-toggle {
  position: absolute;
  z-index: 5;
  right: max(18px, calc((100% - 1200px) / 2));
  bottom: 96px;
  display: inline-flex;
  min-width: 92px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(7, 61, 132, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 20px rgba(7, 61, 132, 0.12);
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 700;
}

.carousel-toggle:hover {
  border-color: var(--blue);
  background: var(--white);
}

.carousel-toggle-icon {
  font-size: 11px;
  letter-spacing: -2px;
}

.form-privacy {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.78;
}

.site-search {
  width: min(680px, calc(100% - 32px));
  max-height: min(720px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(4, 35, 77, 0.38);
}

.site-search::backdrop {
  background: rgba(4, 35, 77, 0.72);
  backdrop-filter: blur(3px);
}

.search-dialog-inner {
  position: relative;
  padding: clamp(28px, 6vw, 52px);
}

.search-dialog-inner h2 {
  margin: 3px 44px 24px 0;
  color: var(--blue-deep);
  font-family: var(--font-yantra, Arial), Arial, sans-serif;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.05;
}

.search-close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.search-close:hover,
.search-close:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.search-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-weight: 700;
}

.search-field-row {
  display: flex;
  gap: 10px;
}

.search-field-row input {
  min-width: 0;
  flex: 1;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
}

.search-field-row .button {
  min-height: 50px;
}

.search-help {
  margin: 13px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.search-results {
  display: grid;
  gap: 8px;
  max-height: 300px;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.search-results a {
  display: block;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.search-results a:hover,
.search-results a:focus-visible {
  border-color: var(--blue-bright);
  background: var(--white);
}

.search-results strong,
.search-results span {
  display: block;
}

.search-results strong {
  color: var(--blue-deep);
}

.search-results span,
.search-empty {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.noscript-warning {
  position: fixed;
  z-index: 9999;
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin: 0;
  padding: 14px 18px;
  border-radius: 4px;
  background: #fff4d6;
  color: #5f4300;
  box-shadow: var(--shadow);
  text-align: center;
}

html:not(.js) .search-link,
html:not(.js) .carousel-toggle,
html:not(.js) .hero-dots {
  display: none;
}

@media (max-width: 900px) {
  html:not(.js) .menu-toggle {
    display: none;
  }

  html:not(.js) .nav-row {
    flex-wrap: wrap;
  }

  html:not(.js) .main-nav {
    position: static;
    order: 3;
    width: 100%;
    max-height: none;
    padding: 8px 0 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    box-shadow: none;
  }
}

@media (max-width: 560px) {
  .search-field-row {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field-row .button {
    justify-content: center;
    width: 100%;
  }

  .carousel-toggle {
    right: 14px;
    bottom: 77px;
  }
}
