:root {
  --accent-blue: #2563eb;
  --accent-blue-hover: #1e40af;
  --ink: #0b1220;
  --line: rgba(11, 18, 32, 0.1);
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

/*! NAV */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo span {
  color: var(--accent-blue);
}

.nav-links a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 8px 2px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 4px;
  height: 2px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  opacity: 0.9;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--accent-blue-hover);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-block;
  margin-left: 22px;
  padding: 10px 14px;
  background: var(--accent-blue);
  color: #ffffff !important;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-blue-hover);
}

/*! Hamburger button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-color: var(--accent-blue);
  background: rgba(0, 68, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle:hover {
  background: rgba(0, 68, 255, 0.12);
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(0, 68, 255, 0.25);
  outline-offset: 3px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-open .nav-toggle {
  background: rgba(0, 68, 255, 0.16);
}

/*! Mobile nav panel */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 12px;
    display: none;
  }

  .nav-links a {
    margin-left: 0;
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
  }

  .site-header.is-open .nav-links {
    display: block;
  }

  .site-header.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .site-header.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.nav-inner {
  position: relative;
}

/*! HERO */
.hero {
  min-height: 100vh;
  background-image: url('assets/dentist-hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 78px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.hero-content {
  position: relative;
  max-width: 600px;
  padding: 0 24px;
  margin-left: 8%;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 55ch;
}

.hero-btn {
  display: inline-block;
  padding: 14px 24px;
  background: var(--accent-blue);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}

.hero-btn:hover {
  background: var(--accent-blue-hover);
}

.story {
  background: #ffffff;
  padding: 96px 0;
}

.story-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.services,
.contact {
  padding: 96px 0;
  border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.services-inner,
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/*! ABOUT SECTION */
.about {
  background: #ffffff;
  padding: 96px 0;
  border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.about-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(11, 18, 32, 0.55);
}

.about-title {
  margin: 0 0 14px;
  line-height: 1.05;
}

.about-script {
  display: block;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--accent-blue, #2563eb);
  margin-bottom: 8px;
}

.about-title-strong {
  display: block;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  color: rgba(11, 18, 32, 0.92);
  letter-spacing: 0.01em;
}

.about-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 22px;
}

.about-ornament .orn-line {
  width: 170px;
  height: 1px;
  background: rgba(11, 18, 32, 0.18);
}

.about-ornament .orn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue, #2563eb);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.16);
}

.about-text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(11, 18, 32, 0.72);
  max-width: 60ch;
}

.about-list {
  margin: 0 0 26px;
  padding-left: 18px;
  line-height: 1.9;
  color: rgba(11, 18, 32, 0.78);
}

.about-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 20px;
  border-radius: 12px;

  background: var(--accent-blue);
  color: #fff;

  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;

  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.14);

  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.about-link:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(11, 18, 32, 0.18);
}

.about-link:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.14);
}

.about-photo {
  width: 100%;
  height: clamp(360px, 38vw, 520px);
  overflow: hidden;
  border-radius: 12px;

  opacity: 0;
  filter: blur(3px);
  transform: translateX(120px) translateY(16px);

  will-change: transform, opacity, filter;
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease,
    filter 700ms ease;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about.is-revealed .about-photo {
  opacity: 1;
  transform: translateX(0) translateY(0);
  filter: blur(0);
}

/* ! SERVICES */

.dentist-services {
  position: relative;
  padding: 96px 0;
  overflow: hidden;

  background: radial-gradient(
      900px 520px at 15% 20%,
      rgba(37, 99, 235, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 85% 80%,
      rgba(37, 99, 235, 0.14),
      transparent 62%
    ),
    linear-gradient(180deg, #eef3ff 0%, #ffffff 70%);

  border-top: 1px solid rgba(37, 99, 235, 0.16);
}

.dentist-services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: stretch;
}

.dentist-services-menu {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.06);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.dentist-svc-item {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 16px 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;

  cursor: pointer;
  text-align: left;

  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.dentist-svc-label {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.88);
  letter-spacing: 0.01em;
}

.dentist-svc-arrow {
  font-size: 22px;
  color: rgba(15, 23, 42, 0.55);
  transition: transform 0.18s ease, color 0.18s ease;
}

.dentist-svc-item:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.08);
}

.dentist-svc-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.22),
    0 14px 30px rgba(2, 6, 23, 0.08);
}

.dentist-svc-item.is-active {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.32);
}

.dentist-svc-item.is-active .dentist-svc-arrow {
  color: var(--accent-blue, #2563eb);
  transform: translateX(2px);
}

.dentist-services-panel {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.06);
  padding: 22px;
  overflow: hidden;
}

.dentist-svc-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: center;
  min-height: 360px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.dentist-svc-stage.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.dentist-svc-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
}

.dentist-svc-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.92);
}

.dentist-svc-desc {
  margin: 12px 0 14px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.65;
  max-width: 60ch;
  font-size: 16px;
}

.dentist-svc-points {
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.6;
}

.dentist-svc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--accent-blue, #2563eb);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.1);
}

.dentist-svc-cta:hover {
  background: var(--accent-blue-hover, #1e40af);
  transform: translateY(-1px);
}

.dentist-svc-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.1);
}

.dentist-svc-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

/*! TEAM */
.team {
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.team-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-head {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 34px;
}

.team-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.55);
}

.team-title {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.92);
}

.team-sub {
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.7);
}

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

.team-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease,
    border-color 160ms ease;
}

.team-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.1);
}

.team-photo {
  margin: 0;
  height: 220px;
  background: rgba(11, 18, 32, 0.04);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-body {
  padding: 18px 18px 20px;
}

.team-name {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.92);
  letter-spacing: -0.01em;
}

.team-role {
  margin: 6px 0 12px;
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(37, 99, 235, 0.95);
}

.team-bio {
  margin: 0;
  color: rgba(11, 18, 32, 0.72);
  line-height: 1.6;
  font-size: 14px;
}

/*! APPOINTMENT */
.appt {
  position: relative;
  padding: 96px 0;

  background: radial-gradient(
      1100px 520px at 15% 20%,
      rgba(37, 99, 235, 0.28),
      transparent 60%
    ),
    radial-gradient(
      900px 480px at 85% 30%,
      rgba(14, 165, 233, 0.22),
      transparent 65%
    ),
    linear-gradient(180deg, #f4f8ff 0%, #eef4ff 45%, #f9fbff 100%);

  border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.appt-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.appt-head {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 34px;
}

.appt-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.55);
}

.appt-title {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.92);
}

.appt-sub {
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.7);
}

.appt-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
  align-items: start;
}

.appt-card {
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.06);
  padding: 22px;
}

.appt-card-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(11, 18, 32, 0.92);
}

.appt-card-line {
  margin: 0 0 12px;
  color: rgba(11, 18, 32, 0.72);
  line-height: 1.55;
}

.appt-link {
  color: rgba(11, 18, 32, 0.86);
  text-decoration: none;
  border-bottom: 2px solid rgba(37, 99, 235, 0.35);
  padding-bottom: 2px;
  transition: border-color 160ms ease, color 160ms ease;
}

.appt-link:hover {
  color: rgba(11, 18, 32, 0.95);
  border-bottom-color: rgba(37, 99, 235, 0.85);
}

.appt-hours {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 18, 32, 0.1);
}

.appt-hours-title {
  margin: 0 0 10px;
  color: rgba(11, 18, 32, 0.86);
}

.appt-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(11, 18, 32, 0.72);
}

.appt-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.appt-card-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--accent-blue, #2563eb);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.1);
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.appt-card-cta:hover {
  background: var(--accent-blue-hover, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(2, 6, 23, 0.14);
}

.appt-formwrap {
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.06);
  padding: 22px;
}

.appt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.appt-field {
  margin-bottom: 14px;
}

.appt-field label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.8);
  margin-bottom: 8px;
}

.appt-field input,
.appt-field select,
.appt-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: #ffffff;
  padding: 12px 12px;
  font: inherit;
  color: rgba(11, 18, 32, 0.9);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.appt-field textarea {
  resize: vertical;
  min-height: 110px;
}

.appt-field input:focus,
.appt-field select:focus,
.appt-field textarea:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.appt-error {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(185, 28, 28, 0.92);
  min-height: 16px;
}

.appt-actions {
  margin-top: 6px;
}

.appt-submit {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  border: none;
  background: var(--accent-blue, #2563eb);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.1);
}

.appt-submit:hover {
  background: var(--accent-blue-hover, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(2, 6, 23, 0.14);
}

.appt-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.appt-privacy {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.62);
  line-height: 1.5;
}

.appt-success {
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(37, 99, 235, 0.08);
  padding: 18px;
}

.appt-success h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.92);
}

.appt-success p {
  margin: 0 0 14px;
  color: rgba(11, 18, 32, 0.72);
  line-height: 1.6;
}

.appt-success-btn {
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.appt-success-btn:hover {
  border-color: rgba(37, 99, 235, 0.32);
}

/*! FOOTER */

.dentist-footer {
  background: #0b1220;
  color: #ffffff;
  padding: 72px 0 36px;
}

.dentist-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.dentist-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

.dentist-footer-col {
  display: flex;
  flex-direction: column;
}

.dentist-footer-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.dentist-footer-text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 38ch;
}

.dentist-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dentist-footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

.dentist-footer-links a:hover {
  color: #93c5fd;
}

.dentist-footer-inline {
  color: #ffffff;
  text-decoration: none;
}

.dentist-footer-inline:hover {
  color: #93c5fd;
}

.dentist-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.dentist-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  text-decoration: none;
}

.dentist-social-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.dentist-social-btn:hover {
  background: #2563eb;
}

.dentist-footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/*! MOBILE */

@media (max-width: 1040px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-photo {
    height: 240px;
  }
}

@media (max-width: 980px) {
  .appt-grid {
    grid-template-columns: 1fr;
  }
  .dentist-services-inner {
    grid-template-columns: 1fr;
  }

  .dentist-svc-stage {
    grid-template-columns: 1fr;
  }

  .dentist-svc-media img {
    height: 260px;
  }
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-photo {
    transform: translateY(16px);
  }
}

@media (max-width: 800px) {
  .dentist-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .appt-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-photo {
    height: 240px;
  }
}

