:root {
  --ink: #13212a;
  --muted: #5b6870;
  --line: #dce8ec;
  --white: #ffffff;
  --page-bg: #f7fbfd;
  --blue: #0b6f95;
  --blue-dark: #064d68;
  --teal: #0e7c73;
  --mint: #e8f6f3;
  --skin: #d9b391;
  --skin-soft: #fbefe6;
  --surface: rgba(255, 255, 255, 0.78);
  --header-bg: rgba(247, 251, 253, 0.82);
  --header-scrolled-bg: rgba(255, 255, 255, 0.92);
  --menu-bg: rgba(255, 255, 255, 0.96);
  --hero-background: linear-gradient(125deg, #f7fbfd 0%, #eef8fb 35%, #fbefe6 100%);
  --hero-fade: #ffffff;
  --treatments-background: linear-gradient(180deg, #ffffff 0%, #eef8f9 100%);
  --appointment-background: linear-gradient(145deg, rgba(11, 111, 149, 0.08), transparent 42%), linear-gradient(315deg, rgba(217, 179, 145, 0.2), transparent 42%), #f8fbfc;
  --social-background: linear-gradient(180deg, #f6fbfc 0%, #ffffff 100%);
  --contact-background: #f8fbfc;
  --tab-bg: rgba(255, 255, 255, 0.84);
  --selected-bg: #e9f6f9;
  --field-bg: #ffffff;
  --label-color: #32444d;
  --confirmation-text: #17423e;
  --shadow: 0 24px 70px rgba(9, 39, 55, 0.12);
  --shadow-soft: 0 12px 34px rgba(9, 39, 55, 0.09);
  --radius: 8px;
  --header-height: 76px;
}

:root[data-theme="dark"] {
  --ink: #eef8f8;
  --muted: #a8bcc4;
  --line: rgba(177, 216, 224, 0.2);
  --white: #102630;
  --page-bg: #071a22;
  --blue: #37a8d0;
  --blue-dark: #9ce7ff;
  --teal: #64dac7;
  --mint: #123c3b;
  --skin-soft: #2b2523;
  --surface: rgba(16, 38, 48, 0.8);
  --header-bg: rgba(7, 26, 34, 0.84);
  --header-scrolled-bg: rgba(10, 31, 40, 0.94);
  --menu-bg: rgba(16, 38, 48, 0.97);
  --hero-background: linear-gradient(125deg, #071a22 0%, #0b2b37 46%, #2a2422 100%);
  --hero-fade: #071a22;
  --treatments-background: linear-gradient(180deg, #071a22 0%, #0d2730 100%);
  --appointment-background: linear-gradient(145deg, rgba(55, 168, 208, 0.12), transparent 42%), linear-gradient(315deg, rgba(217, 179, 145, 0.12), transparent 42%), #081d26;
  --social-background: linear-gradient(180deg, #0a222c 0%, #071a22 100%);
  --contact-background: #081d26;
  --tab-bg: rgba(16, 38, 48, 0.84);
  --selected-bg: rgba(55, 168, 208, 0.16);
  --field-bg: #0b222c;
  --label-color: #d9eef1;
  --confirmation-text: #d9fff8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Noto Sans Bengali", "Hind Siliguri", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

.skip-link,
.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:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-heading h2,
.two-column h2,
.appointment-copy h2,
.social-layout h2,
.contact-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.35rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.section-lead,
.appointment-copy p,
.social-layout p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.04rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(220, 232, 236, 0.72);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: var(--header-scrolled-bg);
  box-shadow: 0 10px 30px rgba(9, 39, 55, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1240px, calc(100% - 36px));
  min-height: var(--header-height);
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(11, 111, 149, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white), var(--mint));
  color: var(--blue-dark);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-menu a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: var(--mint);
  color: var(--blue-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(11, 111, 149, 0.2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.nav-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-height: 42px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.control-btn,
.theme-toggle {
  min-height: 34px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.control-btn {
  min-width: 58px;
  padding: 0 9px;
  background: transparent;
}

.control-btn.is-active {
  background: var(--blue);
  color: #ffffff;
}

.theme-toggle {
  display: inline-grid;
  width: 42px;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #071a22;
  box-shadow: var(--shadow-soft);
}

.theme-icon {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.08);
  background: #071a22;
  color: #ffffff;
}

:root[data-theme="dark"] .theme-icon-moon {
  display: none;
}

:root[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 56px) 0 50px;
  overflow: hidden;
  background: var(--hero-background);
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, rgba(247, 251, 253, 0), var(--hero-fade));
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background:
    linear-gradient(110deg, rgba(14, 124, 115, 0.08), transparent 34%),
    linear-gradient(240deg, rgba(217, 179, 145, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  background-size: 160% 160%;
  animation: premiumShift 12s ease-in-out infinite alternate;
}

@keyframes premiumShift {
  from {
    background-position: 0 20%;
  }

  to {
    background-position: 100% 80%;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

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

.hero-copy h1 {
  margin: 0;
  max-width: 800px;
  color: var(--ink);
  font-size: 5.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-lead {
  margin: 24px 0 0;
  color: var(--blue-dark);
  font-size: 1.32rem;
  font-weight: 800;
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(11, 111, 149, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(14, 124, 115, 0.26);
  background: var(--surface);
  color: var(--blue-dark);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn.full-width {
  width: 100%;
}

.icon svg,
.floating-whatsapp svg,
.slider-btn svg,
.contact-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 32px;
}

.trust-row div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(220, 232, 236, 0.78);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 1rem;
}

.trust-row span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  align-self: stretch;
}

.portrait-frame {
  position: absolute;
  inset: 0 0 34px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: #eaf5f8;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(7, 34, 45, 0.32));
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.availability-strip {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.availability-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.availability-strip strong {
  color: var(--blue-dark);
  white-space: nowrap;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.two-column p {
  color: var(--muted);
}

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

.credential-grid article,
.clinic-card,
.chamber-card,
.timeline-block,
.specialty-block,
.treatment-card,
.booking-panel,
.review-card,
.gallery-card,
.post-grid article,
.map-panel,
.contact-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.credential-grid article {
  min-height: 145px;
  padding: 24px;
}

.credential-grid span,
.clinic-card span,
.post-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-grid strong {
  font-size: 2.15rem;
  line-height: 1;
}

.profile-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 22px;
  margin-top: 34px;
}

.timeline-block,
.specialty-block {
  padding: 28px;
}

.timeline-block h3,
.specialty-block h3,
.booking-step h3 {
  margin: 0 0 18px;
}

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

.timeline li {
  position: relative;
  padding-left: 26px;
}

.timeline li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  content: "";
  background: var(--teal);
  box-shadow: 0 0 0 6px var(--mint);
}

.timeline time,
.timeline span {
  display: block;
}

.timeline time {
  color: var(--blue-dark);
  font-weight: 900;
}

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

.specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.specialty-list span {
  padding: 10px 12px;
  border: 1px solid rgba(11, 111, 149, 0.16);
  border-radius: var(--radius);
  background: var(--selected-bg);
  color: var(--ink);
  font-weight: 800;
}

.treatments-section {
  background: var(--treatments-background);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.tab {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tab-bg);
  color: var(--muted);
  font-weight: 900;
}

.tab.is-active {
  border-color: rgba(11, 111, 149, 0.28);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(11, 111, 149, 0.18);
}

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

.treatment-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.treatment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.treatment-card h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.treatment-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.treatment-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.treatment-card a {
  align-self: flex-start;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.chamber-section {
  background:
    linear-gradient(180deg, var(--hero-fade) 0%, var(--contact-background) 100%);
}

.chamber-heading {
  max-width: 820px;
}

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

.chamber-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.chamber-card-wide {
  grid-column: 1 / -1;
}

.chamber-card::after {
  position: absolute;
  inset: auto -80px -110px auto;
  width: 220px;
  height: 220px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(11, 111, 149, 0.16), transparent 68%);
}

.chamber-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(11, 111, 149, 0.18);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--blue-dark);
}

.chamber-icon svg,
.chamber-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chamber-card-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chamber-card h3 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.1;
}

.chamber-card h4 {
  margin: 6px 0 0;
  color: var(--blue-dark);
  font-size: 1.15rem;
}

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

.chamber-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 750;
}

.chamber-list a {
  color: var(--blue-dark);
  font-weight: 900;
}

.chamber-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.gallery-section {
  background: var(--social-background);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
}

.gallery-disclaimer {
  margin: 0 0 34px;
  padding: 16px 18px;
  border: 1px solid rgba(217, 179, 145, 0.42);
  border-radius: var(--radius);
  background: var(--skin-soft);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.gallery-tab {
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tab-bg);
  color: var(--muted);
  font-weight: 900;
}

.gallery-tab.is-active {
  border-color: rgba(11, 111, 149, 0.28);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(11, 111, 149, 0.18);
}

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

.gallery-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card a {
  display: block;
  overflow: hidden;
  background: var(--mint);
}

.gallery-card picture,
.gallery-card img {
  width: 100%;
}

.gallery-card picture {
  display: block;
  aspect-ratio: 4 / 5;
}

.gallery-card.is-featured picture {
  aspect-ratio: 1 / 1;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card figcaption {
  display: grid;
  gap: 6px;
  padding: 15px;
}

.gallery-card figcaption span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.gallery-card figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.appointment-section {
  background: var(--appointment-background);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.appointment-copy {
  position: sticky;
  top: 112px;
}

.clinic-card {
  margin-top: 28px;
  padding: 24px;
}

.clinic-card strong {
  display: block;
  font-size: 1.28rem;
}

.clinic-card p {
  margin: 10px 0 0;
}

.booking-panel {
  padding: clamp(18px, 3vw, 30px);
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.booking-step {
  margin-bottom: 24px;
}

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

.booking-head span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.date-grid,
.slot-grid {
  display: grid;
  gap: 10px;
}

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

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

.date-option,
.slot-option {
  min-height: 54px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.date-option small,
.slot-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.date-option.is-selected,
.slot-option.is-selected {
  border-color: var(--blue);
  background: var(--selected-bg);
  color: var(--blue-dark);
}

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

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

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--label-color);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field-bg);
  color: var(--ink);
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 112px;
  padding: 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(11, 111, 149, 0.62);
  box-shadow: 0 0 0 4px rgba(11, 111, 149, 0.12);
}

.priority-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(217, 179, 145, 0.45);
  border-radius: var(--radius);
  background: var(--skin-soft);
}

.priority-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}

.priority-check span {
  margin: 0;
}

.confirmation {
  padding: 16px;
  border: 1px solid rgba(14, 124, 115, 0.3);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--confirmation-text);
}

.confirmation strong {
  display: block;
  margin-bottom: 6px;
}

.confirmation a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-section {
  background: var(--white);
}

.review-shell {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 16px;
  align-items: center;
}

.slider-btn {
  display: grid;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}

.review-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 44px);
}

.review-card .stars {
  color: #c68a38;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 18px 0;
  color: var(--ink);
  font-size: 2.05rem;
  line-height: 1.18;
}

.review-card footer {
  color: var(--muted);
  font-weight: 800;
}

.social-section {
  background: var(--social-background);
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(11, 111, 149, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.social-link.is-disabled,
.messenger-link[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.68;
}

.post-grid {
  display: grid;
  gap: 14px;
}

.post-grid article {
  padding: 22px;
}

.post-grid strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.25;
}

.post-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-section {
  background: var(--contact-background);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
}

.contact-list div {
  padding: 18px;
}

.contact-list dt {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-list a {
  color: var(--blue-dark);
}

.map-panel {
  min-height: 470px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.site-footer {
  padding: 28px 0;
  background: #102833;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid a {
  color: #ffffff;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius);
  background: #1fa463;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 164, 99, 0.32);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.mobile-call {
  position: fixed;
  right: 92px;
  bottom: 22px;
  z-index: 90;
  display: none;
  min-height: 58px;
  align-items: center;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--blue-dark);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(6, 77, 104, 0.32);
}

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

  .hero-grid,
  .appointment-layout,
  .social-layout,
  .contact-layout,
  .two-column,
  .profile-details,
  .chamber-grid,
  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .chamber-card-wide {
    grid-column: auto;
  }

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

  .hero-copy h1 {
    font-size: 4.25rem;
  }

  .section-heading h2,
  .two-column h2,
  .appointment-copy h2,
  .social-layout h2,
  .contact-layout h2 {
    font-size: 2.85rem;
  }

  .appointment-copy {
    position: static;
  }

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding: 70px 0;
  }

  .nav-toggle {
    display: grid;
  }

  .site-menu {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--menu-bg);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: grid;
  }

  .site-menu a {
    padding: 14px;
  }

  .nav-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-left: 0;
    padding-top: 8px;
  }

  .language-toggle {
    width: 100%;
  }

  .theme-toggle {
    justify-self: start;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 34px);
  }

  .hero-copy h1 {
    font-size: 2.95rem;
    line-height: 1.14;
  }

  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .section-heading h2,
  .two-column h2,
  .appointment-copy h2,
  .social-layout h2,
  .contact-layout h2 {
    font-size: 2.35rem;
  }

  .chamber-card h3 {
    font-size: 1.8rem;
  }

  .credential-grid strong,
  .review-card blockquote {
    font-size: 1.5rem;
  }

  .trust-row,
  .credential-grid,
  .tabs,
  .date-grid,
  .slot-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .gallery-card.is-featured {
    grid-column: 1 / -1;
  }

  .review-shell {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 8px;
  }

  .slider-btn {
    height: 46px;
  }

  .mobile-call {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .nav-wrap {
    width: calc(100% - 24px);
  }

  .brand strong {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions,
  .contact-actions,
  .chamber-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-filter {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
    line-height: 1.18;
  }

  .section-heading h2,
  .two-column h2,
  .appointment-copy h2,
  .social-layout h2,
  .contact-layout h2 {
    font-size: 2rem;
  }

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

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

  .portrait-frame {
    bottom: 50px;
  }

  .review-shell {
    grid-template-columns: 1fr 1fr;
  }

  .review-card {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .slider-btn {
    grid-row: 2;
  }

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

  .mobile-call {
    right: 86px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
