:root {
  --navy: #173f52;
  --navy2: #0f3344;
  --gold: #e8b516;
  --text: #233f4d;
  --muted: #526873;
  --soft: #f7f9fa;
  --cream: #fbf2d7;
  --black: #141414;
  --white: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.78;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

/* --- Typography (Lighter Editorial Weights) --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 300; /* Refined lighter weight */
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(48px, 6vw, 76px);
}

h2 {
  font-size: clamp(36px, 4.5vw, 54px);
}

h3 {
  font-size: clamp(26px, 3vw, 38px);
}

p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.82;
  font-weight: 300; /* Regular/light text */
}

/* --- Layout Sections --- */
.section {
  padding: 118px 7%;
}

.section-soft {
  padding: 118px 7%;
  background: #fff;
}

/* --- Wayback Style CTA Buttons (Square Corners) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 400; /* Regular weight button font */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 0;
  border-radius: 0px; /* Sharp corners */
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn:hover::after {
  left: 0;
}

.btn:hover {
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(23, 63, 82, 0.15);
}

.btn.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
}

.btn.outline:hover {
  background: #fff;
  color: var(--navy);
}

/* --- Site Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background: rgba(15, 51, 68, 0.98);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.site-header.scrolled {
  height: 76px;
  background: rgba(15, 51, 68, 0.99);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
  width: 92%;
  max-width: 1380px;
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.phone {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2px;
  transition: color 0.3s;
}

.phone:hover {
  color: var(--gold);
}

.logo-img img {
  width: 218px;
  height: auto;
  filter: none;
  transition: transform 0.3s;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.header-btn {
  background: var(--gold);
  color: #fff;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 400; /* Regular weight */
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0px; /* Sharp corners */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-btn:hover {
  background: #fff;
  color: var(--navy);
}

.hamburger {
  width: 50px;
  height: 36px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 9px 0;
  transition: .3s ease;
}

.hamburger:hover span:nth-child(1) {
  transform: translateY(-2px);
}

.hamburger:hover span:nth-child(3) {
  transform: translateY(2px);
}

/* --- Mega Menu & Overlay --- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 12, 18, 0.68);
  opacity: 0;
  visibility: hidden;
  z-index: 1100;
  transition: .35s ease;
  backdrop-filter: blur(5px);
}

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

.mega-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 1120px;
  height: 100vh;
  background: linear-gradient(135deg, #0f3344 0%, #173f52 100%);
  z-index: 1200;
  color: #fff;
  padding: 82px 90px;
  transition: .68s cubic-bezier(0.77, 0, 0.175, 1);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 78px;
  overflow: auto;
}

.mega-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  right: 38px;
  top: 27px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.close-menu:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.mega-brand img {
  width: 260px;
  margin-bottom: 34px;
}

.mega-brand p {
  color: rgba(255, 255, 255, .86);
  max-width: 390px;
}

.mega-contact {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
}

.mega-contact span {
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-links a {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 300; /* Regular weight headings in menu */
  transition: .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-links a:hover, .mega-links a.active {
  color: var(--gold);
  transform: translateX(12px);
}

.mega-bottom {
  position: absolute;
  left: 90px;
  right: 90px;
  bottom: 38px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
}

/* --- Hero Background Video Section --- */
.hero {
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 84px;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 33, 45, 0.65), rgba(13, 33, 45, 0.45));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 84%;
  max-width: 1200px;
  margin: auto;
  color: #fff;
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}

.hero p {
  color: #fff;
  max-width: 520px;
  margin-bottom: 34px;
  font-weight: 300;
}

/* --- CDCP Notice Section --- */
.notice {
  background: #f4f6f7;
  padding: 38px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
  border-bottom: 1px solid #edf1f2;
}

.notice p {
  max-width: 650px;
}

.notice div {
  display: flex;
  gap: 14px;
}

/* --- Core Columns Grids --- */
.about-home, .split-section, .doctor-section {
  width: 86%;
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-home {
  padding: 118px 0;
}

.about-img {
  position: relative;
}

.about-img img, .split-image img, .doctor-image img, .card-img, .feature-grid img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 42px rgba(20, 45, 58, .08);
  border-radius: 0px; /* Sharp corners as shown in Wayback Machine */
}

.about-img img {
  height: 560px;
}

/* --- Symbol Badges & Scaling Bug Fixes --- */
.symbol-badge {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 104px;
  height: 104px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
  z-index: 5;
}

.symbol-badge img {
  width: auto;
  height: auto;
  max-width: 68px;
  max-height: 68px;
  object-fit: contain;
  box-shadow: none;
}

.about-content h2, .split-content h2, .doctor-content h2 {
  margin-bottom: 22px;
}

.about-content h3 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--navy2);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 300; /* Regular light weight subheading */
}

.about-content p, .split-content p, .doctor-content p {
  margin-bottom: 22px;
}

.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 58px;
}

.center h2 {
  margin-bottom: 20px;
}

/* --- Treatments Slider --- */
.treatment-slider {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.treatment-card {
  width: 300px;
  height: 305px;
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 0px; /* Sharp corners */
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card.active {
  width: 330px;
  height: 370px;
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.74);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover img {
  transform: scale(1.08);
  filter: brightness(.62);
}

.treatment-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 300; /* Regular weight */
}

/* --- Dentists Section --- */
.dentists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy2);
  color: #fff;
}

.dentist-text {
  padding: 100px 76px;
  background: linear-gradient(135deg, rgba(15, 51, 68, .96), rgba(23, 63, 82, .92));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dentist-text h2 {
  color: #fff;
  margin-bottom: 10px;
}

.dentist-text span, .doctor-content span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400; /* Regular weight */
  letter-spacing: 1.2px;
  margin-bottom: 34px;
}

.dentist-text p {
  color: #fff;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-bottom: 34px;
}

.dentist-img img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

/* --- Feature Grid --- */
.feature-grid {
  max-width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  position: relative;
}

.feature-grid img {
  height: 330px;
}

.feature-grid h3 {
  margin-bottom: 18px;
}

/* Fixes selector .feature-grid img from overriding .small-symbol size */
.feature-grid img.small-symbol {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto !important;
  height: auto !important;
  max-width: 78px !important;
  max-height: 78px !important;
  object-fit: contain !important;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .15);
  padding: 10px;
  z-index: 5;
}

/* --- Consultation Section --- */
.consult {
  background: linear-gradient(rgba(15, 51, 68, 0.55), rgba(15, 51, 68, 0.55)), url('../images/bg-schedule.webp');
  background-size: cover;
  background-position: center;
  padding: 132px 20px;
  text-align: center;
  color: #fff;
}

.consult h2 {
  color: #fff;
}

.consult span {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400; /* Regular weight */
  letter-spacing: 1px;
  margin: 12px 0 24px;
}

.consult p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #fff;
}

/* --- Inner Pages Hero --- */
.inner-hero {
  height: 560px;
  margin-top: 84px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}

.inner-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 33, 45, .55), rgba(15, 33, 45, .55));
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.inner-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
  margin-bottom: 10px;
}

.inner-hero p, .breadcrumbs {
  color: #fff;
  font-weight: 300;
}

.breadcrumbs {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 13px;
}

.page-intro {
  max-width: 920px;
  margin: auto;
  text-align: center;
  padding: 110px 24px 75px;
}

.page-intro h2 {
  margin-bottom: 24px;
}

.split-section {
  padding: 40px 0 170px;
}

.split-image img {
  height: 435px;
}

.doctor-section {
  grid-template-columns: 340px 1fr;
  align-items: start;
  padding: 120px 0 210px;
}

.doctor-image img {
  height: 340px;
}

/* --- Services Page Grid --- */
.services-grid {
  width: 86%;
  max-width: 1180px;
  margin: auto;
  padding: 90px 0 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: #fff;
  border: 1px solid #e7eef1;
  padding: 34px;
  border-radius: 0px; /* Sharp corners */
  box-shadow: 0 18px 40px rgba(20, 45, 58, .06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(20, 45, 58, .1);
  border-color: var(--gold);
}

.service-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 22px;
  box-shadow: none;
}

.service-box h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

/* --- Contact Page --- */
.contact-wrap {
  width: 86%;
  max-width: 1180px;
  margin: auto;
  padding: 110px 0 170px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

.contact-card {
  background: var(--navy2);
  color: #fff;
  padding: 48px;
  border-radius: 0px; /* Sharp corners */
}

.contact-card h2, .contact-card p {
  color: #fff;
}

.contact-card h2 {
  margin-bottom: 24px;
}

.contact-card p {
  margin-bottom: 18px;
}

.contact-form {
  background: #f7f9fa;
  border: 1px solid #e6eef1;
  padding: 48px;
  border-radius: 0px; /* Sharp corners */
  box-shadow: none;
}

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

.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid #d9e4e9;
  padding: 16px 18px;
  margin-bottom: 18px;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  outline: none;
  background: #fff;
  border-radius: 0px; /* Sharp corners */
  transition: border-color 0.3s;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--gold);
}

.alert {
  padding: 14px 18px;
  margin-bottom: 18px;
  font-weight: 300;
  border-radius: 0px;
}

.alert.success {
  background: #e8f7ee;
  color: #176b36;
}

.alert.error {
  background: #fff0f0;
  color: #a33131;
}

/* --- Testimonials Section --- */
.testimonial-inner {
  max-width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: 220px 1fr 120px;
  gap: 56px;
  align-items: center;
}

.big-symbol {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

.quote {
  display: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.35;
  font-weight: 300; /* Light weight quote text */
  color: #4a4a4a;
}

.quote.active {
  display: block;
  animation: fadeInQuote 0.6s ease forwards;
}

@keyframes fadeInQuote {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.arrows {
  display: flex;
  gap: 12px;
}

.arrows button {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 20px;
  cursor: pointer;
  border-radius: 0px; /* Wayback style square arrows */
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}

.arrows button:hover {
  background: var(--navy);
  color: #fff;
}

/* --- Reviews Page Grid --- */
.reviews-container {
  width: 86%;
  max-width: 1180px;
  margin: auto;
  padding: 60px 0 140px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: #fff;
  border: 1px solid #e7eef1;
  padding: 34px;
  border-radius: 0px;
  box-shadow: 0 14px 36px rgba(20, 45, 58, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 46px rgba(20, 45, 58, 0.08);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 22px;
}

.review-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-author::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

/* --- Privacy & Accessibility Pages --- */
.policy-container {
  width: 78%;
  max-width: 900px;
  margin: auto;
  padding: 100px 24px 160px;
}

.policy-container h2 {
  font-size: 32px;
  color: var(--navy2);
  margin: 44px 0 20px;
}

.policy-container p {
  margin-bottom: 22px;
}

.policy-container ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- Dynamic PHP CAPTCHA styles --- */
.captcha-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}

.captcha-image-box {
  background: #eaeef0;
  border: 1px solid #d9e4e9;
  padding: 10px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--navy);
  user-select: none;
  text-decoration: line-through;
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.captcha-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 48%, rgba(23, 63, 82, 0.08) 50%, transparent 52%),
              linear-gradient(-45deg, transparent 48%, rgba(23, 63, 82, 0.08) 50%, transparent 52%);
  background-size: 10px 10px;
  pointer-events: none;
}

.captcha-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: -6px;
  margin-bottom: 18px;
  display: block;
  line-height: 1.3;
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 70px 20px 42px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.site-footer nav a {
  font-size: 13px;
  font-weight: 300; /* Regular weight menu links */
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s;
}

.site-footer nav a:hover {
  color: var(--gold);
}

.site-footer p {
  color: #ccc;
  max-width: 850px;
  margin: 0 auto 12px;
  font-size: 15px;
}

.site-footer p strong {
  color: #fff;
}

.site-footer small {
  display: block;
  color: #666;
  margin-top: 32px;
  font-size: 13px;
}

/* --- Minimal Social Icons in Footer --- */
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
}

.social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.social a:hover {
  color: var(--gold);
}

.social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- Smooth Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Layout Breakpoints --- */
@media(max-width: 1050px) {
  .treatment-slider, .services-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .desktop-nav {
    display: none;
  }
  .about-home, .split-section, .doctor-section, .dentists, .feature-grid, .contact-wrap, .testimonial-inner {
    grid-template-columns: 1fr;
  }
  .treatment-slider {
    flex-direction: column;
    align-items: center;
  }
  .treatment-card, .treatment-card.active {
    width: 100%;
    max-width: 420px;
    height: 340px;
  }
  .columns, .form-row {
    grid-template-columns: 1fr;
  }
  .small-symbol {
    display: none;
  }
  .doctor-section {
    gap: 48px;
  }
  .testimonial-inner {
    text-align: center;
  }
  .big-symbol {
    margin: auto;
  }
  .arrows {
    justify-content: center;
  }
  .mega-menu {
    width: 92%;
    padding: 72px 38px;
    grid-template-columns: 1fr;
  }
  .mega-links a {
    font-size: 18px;
        line-height: 25px;
  }
  .mega-bottom {
    display: none;
  }
  .phone, .header-btn {
    display: none;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .logo-img img {
    width: 185px;
  }
  .section {
    padding: 90px 24px;
  }
}

@media(max-width: 620px) {
  body, p {
    font-size: 16px;
  }
  h1, .hero h1 {
    font-size: clamp(36px, 8vw, 48px);
  }
  h2 {
    font-size: 34px;
  }
  .hero {
    height: 620px;
    margin-top: 84px;
  }
  .inner-hero {
    height: 450px;
  }
  .inner-hero h1 {
    font-size: 38px;
  }
  .about-home, .split-section, .doctor-section, .contact-wrap {
    width: 90%;
  }
  .about-img img, .split-image img, .doctor-image img {
    height: 320px;
  }
  .dentist-text {
    padding: 72px 26px;
  }
  .quote {
    font-size: 24px;
  }
  .mega-brand img {
    width: 210px;
  }
  .mega-links a {
    font-size: 18px;
        line-height: 25px;
  }
  .symbol-badge {
    right: 18px;
    bottom: -35px;
  }
  .notice {
    flex-direction: column;
  }
  .notice div {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .notice .btn {
    width: 100%;
  }
}
