/*
===============================================================
RATHI DENTAL NEST - HOME PAGE CSS
===============================================================
This stylesheet is intentionally standalone and editable.
The dimensions, colors, typography, cards, spacing and controls
are based on the supplied Home-page screenshots and the original
production CSS/classes found in the supplied website build.
===============================================================
*/

/* ===================== NAVIGATION BAR ===================== */

.navbar {
  width: 100%;
  height: 95px;
  background: #f4f9f6;
  border-bottom: 1px solid #dfe8e2;
  position: relative;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  width: 135px;
  height: auto;
  display: block;
}

/* Navigation Menu */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: #355536;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #0d8190;
}

.nav-link.active {
  color: #355536;
}

/* Book Appointment */

.appointment-btn {
  text-decoration: none;
  background: #2e4f2d;
  color: white;

  padding: 12px 22px;
  border-radius: 8px;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s ease;
}

.appointment-btn:hover {
  background: #2e4f2d;
  transform: translateY(-1px);
}

/* ===================== MOBILE ===================== */

@media (max-width: 900px) {

  .navbar {
    height: auto;
    padding: 15px 0;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-link {
    font-size: 15px;
  }

  .appointment-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .nav-logo img {
    width: 115px;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  color: #0a2647;
  background: #fff;
  line-height: 1.6;
}

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

button, a { font: inherit; }

a { text-decoration: none; }

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

/* ========================= HERO ========================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(135deg, #e6f0e9 0%, #ffffff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(205, 218, 209, .35);
  pointer-events: none;
}

.hero::before {
  width: 330px;
  height: 330px;
  left: 330px;
  top: 75px;
}

.hero::after {
  width: 300px;
  height: 300px;
  right: 300px;
  top: -80px;
  opacity: .7;
}

.hero-quote {
  position: absolute;
  z-index: 20;
  top: 38px;
  left: clamp(32px, 4.5vw, 65px);
  color: #2e4f2d;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 700;
  font-style: italic;
}

.hero-track {
  position: relative;
  height: 100%;
  padding-top: clamp(115px, 13vh, 150px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 110px clamp(32px, 6.2vw, 85px) 45px;
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  transition: opacity .8s ease, transform .8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-copy {
  width: 50%;
  padding-right: clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 5;
}

.hero-copy h1 {
  margin: 0 0 14px;
  color: #0a2647;
  font-size: clamp(44px, 4.3vw, 68px);
  line-height: 1.08;
  font-weight: 700;
}

.hero-copy p {
  max-width: 600px;
  margin: 0 0 22px;
  color: #374e67;
  font-size: clamp(18px, 1.5vw, 24px);
}

.hero-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 9px;
  background: #059b3e;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease;
}

.hero-button:hover {
  background: #007f33;
  transform: translateY(-2px);
}

.hero-image-wrap {
  width: 50%;
  height: min(500px, 60vh);
  min-height: 360px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  position: relative;
  z-index: 4;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  z-index: 30;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #2e4f2d;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,.1);
  transition: transform .2s ease;
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.hero-prev { left: 2px; }
.hero-next { right: 16px; }

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

.hero-dot {
  width: 13px;
  height: 13px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #b5c4b7;
  cursor: pointer;
}

.hero-dot.active { background: #2e5a32; }

/* ========================= SECTIONS ========================= */

.section {
  padding: 62px 0 70px;
}

.gallery {
  background: #fff;
}

.section h2 {
  margin: 0;
  text-align: center;
  color: #006d32;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 700;
}

.section-intro {
  max-width: 680px;
  margin: 22px auto 45px;
  color: #374e67;
  text-align: center;
  font-size: 20px;
}

/* ========================= GALLERY ========================= */

.gallery-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.gallery-tabs {
  padding: 4px;
  width: max-content;
  margin-inline: auto;
  border-radius: 999px;
  background: #eef5ff;
}

.gallery-tab {
  border: 0;
  padding: 10px 24px;
  border-radius: 999px;
  background: transparent;
  color: #006d32;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

.gallery-tab.active {
  background: #00a83f;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

.gallery-viewer {
  position: relative;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  background: #463d39;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.gallery-viewer > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease, transform .5s ease;
}

.gallery-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(0,0,0,.20));
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(110,105,103,.82);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 3px #000;
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.gallery-thumb {
  width: 64px;
  height: 48px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  opacity: .65;
}

.gallery-thumb.active {
  border-color: #00a83f;
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================= DENTISTS ========================= */

.dentists {
  background: linear-gradient(to bottom, #fff 0%, #f0fbf3 100%);
}

.dentist-heading {
  margin-bottom: 48px;
  text-align: center;
}

.dentist-heading h2 {
  color: #00752f;
  margin-bottom: 12px;
}

.dentist-heading h2 span {
  color: #00a83f;
}

.dentist-heading p {
  max-width: 660px;
  margin: auto;
  color: #374e67;
}

.dentist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1150px;
  margin: auto;
}

.doctor-card {
  overflow: hidden;
  border: 1px solid #edf0ed;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,.13);
}

.doctor-header {
  padding: 24px;
  color: #fff;
  background: #00a83f;
}

.doctor-header h3 {
  margin: 0 0 2px;
  font-size: 25px;
  line-height: 1.25;
}

.doctor-header p {
  margin: 0;
  color: #d9f5e4;
  font-weight: 600;
}

.doctor-header span {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #008d39;
  font-size: 14px;
}

.doctor-about {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid #edf0ed;
}

.doctor-photo {
  width: 34%;
  flex: 0 0 34%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-bio {
  flex: 1;
}

.doctor-bio h4,
.doctor-info h4 {
  margin: 0 0 10px;
  color: #102d4c;
  font-size: 18px;
}

.doctor-bio p {
  margin: 0;
  color: #49627d;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}

.doctor-info {
  padding: 24px;
  border-bottom: 1px solid #edf0ed;
}

.doctor-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-info li {
  position: relative;
  margin: 7px 0;
  padding-left: 28px;
  color: #49627d;
}

.doctor-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border: 2px solid #00c85a;
  border-radius: 50%;
  color: #00b950;
  font-size: 10px;
  font-weight: 700;
  line-height: 13px;
  text-align: center;
}

.doctor-info.achievements {
  background: #effbf2;
  border-bottom: 0;
}

/* ========================= RESPONSIVE ========================= */

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero-track {
    height: 760px;
  }

  .hero-slide {
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
  }

  .hero-copy,
  .hero-image-wrap {
    width: 100%;
  }

  .hero-copy {
    padding: 0 30px 25px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-image-wrap {
    height: 360px;
    min-height: 0;
  }

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

@media (max-width: 600px) {
  .hero-quote {
    top: 24px;
    left: 24px;
    font-size: 20px;
  }

  .hero-slide {
    padding: 105px 18px 55px;
  }

  .hero-copy {
    padding: 0 10px 20px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-image-wrap {
    height: 300px;
    border-radius: 12px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-prev { left: 6px; }
  .hero-next { right: 6px; }

  .section {
    padding: 48px 0;
  }

  .section-intro {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .gallery-viewer {
    border-radius: 8px;
  }

  .gallery-thumbs {
    display: none;
  }

  .doctor-about {
    flex-direction: column;
  }

  .doctor-photo {
    width: 170px;
    flex-basis: 170px;
  }
}
/* ===================== ADULT NEST ===================== */
.adult-nest-section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px 80px;
  text-align: center;
  background: #ffffff;
}

.adult-nest-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #d1fae5;
  color: #00875a;
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.adult-nest-badge svg {
  width: 16px;
  height: 16px;
  stroke: #00875a;
  flex-shrink: 0;
}

.adult-nest-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f2942;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.adult-nest-divider {
  width: 52px;
  height: 3.5px;
  background-color: #00c48c;
  border-radius: 9999px;
  margin: 0 auto 48px auto;
}

.adult-nest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.adult-nest-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adult-nest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.adult-nest-card-image {
  width: 100%;
  height: 240px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.adult-nest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adult-nest-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #ffffff;
  border-top: 1px solid #edf0f3;
}

.adult-nest-card-footer svg {
  width: 19px;
  height: 19px;
  stroke: #00a83f;
  flex-shrink: 0;
}

.adult-nest-card-footer h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f2942;
  margin: 0;
  line-height: 1.3;
}

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

@media (max-width: 640px) {
  .adult-nest-section {
    padding: 44px 16px 56px;
  }
  .adult-nest-title {
    font-size: 32px;
  }
  .adult-nest-divider {
    margin-bottom: 32px;
  }
  .adult-nest-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .adult-nest-card-image {
    height: 210px;
  }
}
/* ========================= CHILD NEST ========================= */

.child-nest {
  background: #ffffff;
  padding: 30px 0 78px;
  position: relative;
}

.child-nest-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.child-nest-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d8f5ea;
  color: #00875a;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.child-nest-badge .badge-icon {
  width: 16px;
  height: 16px;
  stroke: #00875a;
  flex-shrink: 0;
}

.child-nest-title {
  margin: 0 0 12px;
  text-align: center;
  color: #0a2647;
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.child-nest-divider {
  width: 50px;
  height: 3.5px;
  background: #00c48c;
  border-radius: 999px;
  margin: 0 auto 46px;
}

.child-nest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
}

.child-card {
  background: #ffffff;
  border: 1px solid #edf0ed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.child-card.highlighted {
  border: 2px solid #5eead4;
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.25), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.child-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border-color: #d8e5dc;
}

.child-card.highlighted:hover {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.35), 0 16px 30px rgba(0, 0, 0, 0.14);
}

.child-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f6f8;
  position: relative;
}

.child-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.child-card:hover .child-card-image img {
  transform: scale(1.04);
}

.child-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #ffffff;
  border-top: 1px solid #f0f3f1;
}

.child-card-footer .star-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #00a83f;
  stroke: #00a83f;
}

.child-card-footer h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #0a2647;
  line-height: 1.3;
}
/* ========================= ADVANCED NEST ========================= */

.advanced-nest {
  background: #ffffff;
  padding: 30px 0 84px;
  position: relative;
}

.advanced-nest-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.advanced-nest-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d8f5ea;
  color: #00875a;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.advanced-nest-badge .badge-icon {
  width: 16px;
  height: 16px;
  stroke: #00875a;
  flex-shrink: 0;
}

.advanced-nest-title {
  margin: 0 0 12px;
  text-align: center;
  color: #0a2647;
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.advanced-nest-divider {
  width: 50px;
  height: 3.5px;
  background: #00c48c;
  border-radius: 999px;
  margin: 0 auto 46px;
}

.advanced-nest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
}

.advanced-card {
  background: #ffffff;
  border: 1px solid #edf0ed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.advanced-card.highlighted {
  border: 2px solid #5eead4;
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.25), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.advanced-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border-color: #d8e5dc;
}

.advanced-card.highlighted:hover {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.35), 0 16px 30px rgba(0, 0, 0, 0.14);
}

.advanced-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f6f8;
  position: relative;
}

.advanced-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.advanced-card:hover .advanced-card-image img {
  transform: scale(1.04);
}

.advanced-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #ffffff;
  border-top: 1px solid #f0f3f1;
}

.advanced-card-footer .star-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #00a83f;
  stroke: #00a83f;
}

.advanced-card-footer h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #0a2647;
  line-height: 1.3;
}

/* Tablet & Mobile Responsive */
@media (max-width: 900px) {
  .advanced-nest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .advanced-nest {
    padding: 36px 0 48px;
  }
  .advanced-nest-title {
    font-size: 30px;
  }
  .advanced-nest-divider {
    margin-bottom: 32px;
  }
  .advanced-nest-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .advanced-card-footer {
    padding: 16px 20px;
  }
  .advanced-card-footer h3 {
    font-size: 16px;
  }
}
/* =========================================================
   NEST OF HAPPY SMILES (EXACTLY MATCHING SCREENSHOT)
   ========================================================= */

.happy-smiles-section {
  background: #ffffff;
  padding: 30px 0 90px;
  position: relative;
  text-align: center;
}

.happy-smiles-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.happy-smiles-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.happy-smiles-title .title-dark {
  color: #095c37;
}

.happy-smiles-title .title-green {
  color: #00aa44;
}

.happy-smiles-subtitle {
  margin: 0 auto 48px;
  max-width: 640px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-slider-wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow {
  position: absolute;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #f0f4f8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #2563eb;
}

.slider-arrow:hover {
  background: #f8fafc;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
}

.prev-arrow {
  left: -22px;
}

.next-arrow {
  right: -22px;
}

.testimonial-card {
  width: 100%;
  background: #f2f6fe;
  border-radius: 22px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 36px;
  text-align: left;
  border: 1px solid #e8effc;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.02);
}

.testimonial-avatar {
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 68px;
  height: 68px;
  color: #222222;
}

.testimonial-content {
  flex: 1;
}

.quote-mark {
  color: #688bf5;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.review-text {
  font-style: italic;
  color: #2c3749;
  font-size: 16px;
  line-height: 1.68;
  margin: 0 0 18px;
}

.review-author {
  font-size: 17px;
  font-weight: 700;
  color: #095c37;
  margin: 0;
  letter-spacing: -0.2px;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dots .dot.active {
  background: #0066ff;
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  
  .prev-arrow {
    left: -12px;
  }
  
  .next-arrow {
    right: -12px;
  }
}
/* =========================================================
   OUR LOCATION & CONTACT US (EXACTLY MATCHING SCREENSHOT)
   ========================================================= */

.location-contact-section {
  background: #ffffff;
  padding: 30px 0 90px;
  position: relative;
}

.location-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.location-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* --- Left Card: Our Location --- */
.location-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.location-header {
  background: #007a3d;
  padding: 16px 24px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-align: left;
}

.location-map-container {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 480px;
  background: #e8ecf1;
  overflow: hidden;
}

.location-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

/* Floating Google Maps Card Overlay matching screenshot */
.map-floating-card {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: #ffffff;
  border-radius: 4px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  max-width: 270px;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: left;
  line-height: 1.3;
}

.map-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.map-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
}

.map-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-card-icon-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.map-card-icon-btn.external-link {
  border: 1px solid #1a73e8;
  border-radius: 4px;
  color: #1a73e8;
}

.map-card-icon-btn.directions {
  background: #1a73e8;
  border-radius: 50%;
  color: #ffffff;
}

.map-card-address {
  font-size: 11px;
  color: #555555;
  margin: 0 0 6px;
  line-height: 1.35;
}

.map-card-rating {
  font-size: 11.5px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-card-rating .score {
  font-weight: 700;
}

.map-card-rating .star {
  color: #ea8600;
  font-size: 13px;
}

.map-card-rating .reviews-count {
  color: #1a73e8;
  text-decoration: none;
}

.map-card-rating .reviews-count:hover {
  text-decoration: underline;
}

.map-card-rating .info-icon {
  color: #777777;
  font-size: 12px;
  margin-left: 2px;
}

/* --- Right Card: Let's Contact US --- */
.contact-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 40px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.contact-heading {
  margin-bottom: 26px;
}

.contact-heading .lets-text {
  font-family: "Georgia", "Playfair Display", serif;
  color: #095c37;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 2px;
}

.contact-heading .contact-us-text {
  font-family: "Georgia", "Playfair Display", serif;
  color: #008744;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: #1f2937;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #6b7280;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #008744;
  box-shadow: 0 0 0 3px rgba(0, 135, 68, 0.12);
}

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

.contact-submit-btn {
  align-self: flex-start;
  background: #00a844;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  margin-top: 4px;
}

.contact-submit-btn:hover {
  background: #008f3a;
  box-shadow: 0 4px 14px rgba(0, 168, 68, 0.25);
}

.contact-submit-btn:active {
  transform: scale(0.98);
}

.contact-submit-btn svg {
  width: 17px;
  height: 17px;
  stroke: #ffffff;
  stroke-width: 2.2;
  fill: none;
}

@media (max-width: 900px) {
  .location-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .contact-card {
    padding: 30px 24px;
  }
  
  .contact-heading .lets-text {
    font-size: 32px;
  }

  .contact-heading .contact-us-text {
    font-size: 38px;
  }
}
/* =========================================================
   FOOTER (EXACT 1:1 MATCHING SCREENSHOT)
   ========================================================= */

.site-footer {
  background-color: #eff5f1;
  border-top: 1px solid #dbe6de;
  padding: 60px 0 32px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #4b5563;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.3fr;
  gap: 42px;
  align-items: start;
}

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

.footer-title {
  color: #1a5036;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.68;
  color: #4b5563;
  margin: 0 0 24px 0;
  max-width: 320px;
}

/* Social Media Icons */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a5036;
  transition: transform 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  color: #008744;
  transform: translateY(-2px);
}

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

/* Quick Links & Services Lists */
.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-item a,
.footer-nav-item span {
  font-size: 14.5px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

.footer-nav-item a:hover {
  color: #008744;
  transform: translateX(2px);
}

/* Connect With Us List */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: #5a453e; /* Warm sepia brown tone matching screenshot */
  margin-top: 1.5px;
}

.footer-contact-item a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #008744;
}

/* Horizontal Divider */
.footer-divider {
  border: none;
  border-top: 1px solid #c5d8cb;
  margin: 48px 0 24px 0;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

.footer-bottom-bar a {
  color: inherit;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 30px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 45px 0 28px;
  }

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

  .footer-about-text {
    max-width: 100%;
  }

  .footer-divider {
    margin: 36px 0 20px 0;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* =========================================================
   ADULT NEST HERO BANNER (EXACT 1:1 MATCHING SCREENSHOT)
   ========================================================= */

.adult-nest-hero-banner {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 32px auto 48px auto;
  border-radius: 26px;
  overflow: hidden;
  background-color: #0b3c31;
  background-image: url('../../images/healingnest.jpg');
  background-size: cover;
  background-position: center 32%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

/* Emerald green tint overlay matching screenshot */
.adult-nest-hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(14, 62, 50, 0.93) 0%,
    rgba(18, 86, 72, 0.87) 48%,
    rgba(25, 115, 102, 0.82) 100%
  );
  padding: 92px 24px 88px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* Badge at top */
.adult-nest-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 22px;
}

.adult-nest-hero-badge svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.2;
}

/* Main Heading */
.adult-nest-hero-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.16;
  letter-spacing: -0.5px;
  max-width: 860px;
}

/* Subtitle */
.adult-nest-hero-subtitle {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  max-width: 660px;
  margin: 0 auto 30px auto;
  font-weight: 400;
}

/* Schedule Appointment Button */
.adult-nest-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #00ba7c;
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 9999px;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 186, 124, 0.35);
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.adult-nest-hero-btn:hover {
  background-color: #00a46d;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 186, 124, 0.45);
}

.adult-nest-hero-btn svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  stroke-width: 2.2;
  fill: none;
}

@media (max-width: 768px) {
  .adult-nest-hero-banner {
    width: calc(100% - 24px);
    margin: 20px auto 32px auto;
    border-radius: 20px;
  }

  .adult-nest-hero-overlay {
    padding: 60px 18px 55px 18px;
  }

  .adult-nest-hero-title {
    font-size: 32px;
  }

  .adult-nest-hero-subtitle {
    font-size: 15px;
  }
}

/* Specific Hero Banner Backgrounds */
.child-nest-hero-banner {
  background-image: url('images/child-nest-hero.jpg');
}

.advance-nest-hero-banner {
  background-image: url('images/advance-nest-hero.jpg');
}

.blog-hero-banner {
  background-image: url('images/blog-hero.jpg');
}


/* =========================================================
   MISSING TEETH SOLUTIONS CARD (EXACT 1:1 SCREENSHOT UI)
   ========================================================= */

.adult-solution-card {
  max-width: 1120px;
  margin: 10px auto 48px auto;
  background-color: #f2faf6;
  border: 1px solid #d4ece1;
  border-top: 4px solid #00c48c; /* Vivid green top accent stripe */
  border-radius: 24px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: start;
  text-align: left;
  box-sizing: border-box;
}

/* Left Column: Image with solid dark rounded border */
.solution-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.solution-image-frame {
  width: 100%;
  max-width: 340px;
  height: 310px;
  border: 2px solid #1a1a1a;
  border-radius: 18px;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

/* Right Column: Content Area */
.solution-content-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Header with Tooth Icon */
.solution-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tooth-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #0a2540;
  stroke: #0a2540;
}

.solution-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 32px);
  font-weight: 700;
  color: #0a2540;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

/* Subtitle */
.solution-subtitle {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 22px 0;
}

/* Tabs List */
.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 24px;
}

.solution-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #1f2937;
  transition: all 0.2s ease;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  outline: none;
}

.solution-tab:hover {
  border-color: #237a54;
  color: #237a54;
  transform: translateY(-1px);
}

.solution-tab.active {
  background: #237a54;
  border-color: #237a54;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(35, 122, 84, 0.28);
}

.tab-star {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #374151;
  fill: none;
  stroke-width: 1.9;
  transition: stroke 0.2s ease;
}

.solution-tab.active .tab-star {
  stroke: #ffffff;
}

/* Inner White Detail Card */
.solution-detail-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2ef;
  transition: opacity 0.2s ease;
}

.solution-detail-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  color: #0a2540;
  margin: 0 0 10px 0;
  line-height: 1.25;
}

.solution-detail-desc {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.62;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .adult-solution-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 22px;
  }

  .solution-image-frame {
    max-width: 100%;
    height: 280px;
  }
}

@media (max-width: 540px) {
  .adult-solution-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .solution-image-frame {
    height: 230px;
    border-radius: 14px;
  }

  .solution-title {
    font-size: 24px;
  }

  .solution-tabs {
    gap: 8px;
  }

  .solution-tab {
    padding: 7px 14px;
    font-size: 13px;
  }

  .solution-detail-card {
    padding: 18px 20px;
  }
}
/* Alternating reverse layout for Smile Transformation (Content Left, Image Right) */
.adult-solution-card.reverse {
  grid-template-columns: 1fr 340px;
  margin-top: 28px;
}

/* Smile Emoji Badge */
.smile-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  line-height: 1;
  flex-shrink: 0;
}

/* Tablet & Mobile responsive stacking */
@media (max-width: 900px) {
  .adult-solution-card.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 22px;
  }
}

/* Purple Medical Symbol Icon Badge */
.surgery-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background-color: #7048e8;
  color: #ffffff;
  flex-shrink: 0;
}

.surgery-icon-badge svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

/* Inverted layout for alternating cards (Content Left, Image Right) */
.adult-solution-card.reverse {
  grid-template-columns: 1fr 340px;
  margin-top: 28px;
}

/* Emoji icon badge styling */
.smile-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  line-height: 1;
  flex-shrink: 0;
}

/* Responsive collapse for tablets and mobile */
@media (max-width: 900px) {
  .adult-solution-card.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 22px;
  }
}

/* =========================================================
   CHILD NEST HERO BANNER (1:1 SCREENSHOT UI DESIGN)
   ========================================================= */

/* Hero Container with Rounded Corners & Background */
.adult-nest-hero-banner {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 28px auto 40px auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.child-nest-hero-banner {
  background-image: url('../../images/child.jpg');
  background-size: cover;
  background-position: center 38%;
}

/* Teal / Ocean Cyan Tint Overlay */
.child-hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(14, 102, 120, 0.88) 0%,
    rgba(11, 76, 92, 0.89) 50%,
    rgba(16, 92, 108, 0.84) 100%
  ) !important;
  padding: 85px 24px 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}



.child-hero-badge svg {
  width: 16px;
  height: 16px;
  stroke: #5eead4 !important;
  fill: none;
}

/* Serif Title */
.adult-nest-hero-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.16;
  letter-spacing: -0.5px;
  max-width: 860px;
}

/* Subtitle */
.adult-nest-hero-subtitle {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 660px;
  margin: 0 auto 30px auto;
  font-weight: 400;
}

/* Schedule Appointment Turquoise Button */
.child-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #00c49f;
  color: #00382e;
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 196, 159, 0.35);
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.child-hero-btn:hover {
  background-color: #00b08e;
  color: #00261f;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 196, 159, 0.45);
}

.child-hero-btn svg {
  width: 18px;
  height: 18px;
  stroke: #00382e;
  stroke-width: 2.2;
  fill: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .adult-nest-hero-banner {
    width: calc(100% - 24px);
    margin: 18px auto 28px auto;
    border-radius: 18px;
  }

  .child-hero-overlay {
    padding: 60px 18px 55px 18px;
  }

  .adult-nest-hero-title {
    font-size: 32px;
  }

  .adult-nest-hero-subtitle {
    font-size: 15px;
  }
}

/* =========================================================
   PEDIATRIC DENTISTRY CARD STYLING (MATCHING SCREENSHOT)
   ========================================================= */

.adult-solution-card {
  max-width: 1120px;
  margin: 10px auto 40px auto;
  background-color: #f2faf6;
  border: 1px solid #d4ece1;
  border-top: 4px solid #00c48c;
  border-radius: 24px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: start;
  text-align: left;
  box-sizing: border-box;
}

/* Left Column: Image with black rounded border */
.solution-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.solution-image-frame {
  width: 100%;
  max-width: 340px;
  height: 310px;
  border: 2px solid #1a1a1a;
  border-radius: 18px;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

/* Right Column: Content */
.solution-content-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Header with Baby Icon & Serif Title */
.solution-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.smile-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.solution-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  color: #0a2540;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

/* Subtitle */
.solution-subtitle {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 22px 0;
}

/* Tabs & Pills */
.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 20px;
}

.solution-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #1f2937;
  transition: all 0.2s ease;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  outline: none;
}

.solution-tab:hover {
  border-color: #237a54;
  color: #237a54;
  transform: translateY(-1px);
}

.solution-tab.active {
  background: #237a54;
  border-color: #237a54;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(35, 122, 84, 0.28);
}

.tab-star {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #374151;
  fill: none;
  stroke-width: 1.9;
  transition: stroke 0.2s ease;
}

.solution-tab.active .tab-star {
  stroke: #ffffff;
}

/* Inner Detail Card */
.solution-detail-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2ef;
  transition: opacity 0.2s ease;
}

.solution-detail-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #103728;
  margin: 0 0 6px 0;
}

.solution-detail-desc {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .adult-solution-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }

  .solution-image-frame {
    max-width: 100%;
    height: 260px;
  }
}

/* =========================================================
   ADVANCED DENTAL TECHNOLOGY & SAFETY BANNER (SCREENSHOT UI)
   ========================================================= */

.advance-tech-banner {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 28px auto 42px auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  /* Exact horizontal gradient from warm caramel-tan to muted sage-olive */
  background: linear-gradient(
    90deg,
    #9e815b 0%,
    #8d8368 45%,
    #708678 100%
  );
}

.advance-tech-overlay {
  width: 100%;
  padding: 72px 28px 70px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* Main Heading: Bold White Sans-serif */
.advance-tech-title {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.18;
  letter-spacing: -0.4px;
  max-width: 900px;
}

/* Subtitle: High-contrast Crisp White */
.advance-tech-subtitle {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 780px;
  margin: 0 auto;
  font-weight: 400;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .advance-tech-banner {
    width: calc(100% - 24px);
    margin: 18px auto 28px auto;
    border-radius: 18px;
  }

  .advance-tech-overlay {
    padding: 50px 18px 48px 18px;
  }

  .advance-tech-title {
    font-size: 27px;
    margin-bottom: 12px;
  }

  .advance-tech-subtitle {
    font-size: 14.5px;
  }
}

/* =========================================================
   ADVANCED TECHNOLOGIES 3-CARD GRID (EXACT SCREENSHOT UI)
   ========================================================= */

.advanced-tech-grid-section {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 20px 60px;
  box-sizing: border-box;
}

.advanced-tech-grid-container {
  max-width: 1160px;
  margin: 0 auto;
}

.advanced-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Individual Card */
.tech-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

/* Card Top Image Wrap */
.tech-card-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.tech-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.tech-card:hover .tech-card-image-wrap img {
  transform: scale(1.04);
}

/* Circular Floating Badge overlapping bottom-left of image */
.tech-card-badge {
  position: absolute;
  left: 22px;
  bottom: -22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: transform 0.25s ease;
}

.tech-card:hover .tech-card-badge {
  transform: scale(1.08);
}

.tech-card-badge svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

/* Specific Badge Background Colors */
.badge-implant,
.badge-laser {
  background-color: #b39572;
}

.badge-pain {
  background-color: #668d7f;
}

/* Card Content Area */
.tech-card-content {
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

/* Card Titles */
.tech-card-title {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1.25;
  margin: 0 0 12px 0;
}

.title-implant,
.title-laser {
  color: #967855;
}

.title-pain {
  color: #5a8273;
}

/* Card Description */
.tech-card-desc {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14.5px;
  color: #556475;
  line-height: 1.55;
  margin: 0 0 24px 0;
}

/* Tag Pills Group */
.tech-card-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.tech-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.tech-tag:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Tag Color Themes */
.tag-warm {
  background-color: #f6f3ee;
  color: #7d6346;
}

.tag-sage {
  background-color: #edf4f1;
  color: #496f60;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .advanced-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .advanced-tech-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tech-card-image-wrap {
    height: 195px;
  }

  .tech-card-content {
    padding: 30px 20px 24px 20px;
  }

  .tech-card-title {
    font-size: 19px;
  }
}

/* ==========================================================================
   OUR SAFETY PROTOCOLS CARD - EXACT SCREENSHOT DESIGN
   ========================================================================== */

:root {
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bg-page: #f8fafc;
  --card-bg: #ffffff;
  --card-border-dashed: #cbd5e1;
  --badge-bg: #f5eee8;
  --title-color: #2d3748;
  --text-color: #596370;
  --accent-left: #628271;
  --accent-right: #b89267;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   Section Wrapper
   ========================================================= */
.safety-protocols-section {
  width: 100%;
  background-color: var(--bg-page);
  padding: 60px 20px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.safety-protocols-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* =========================================================
   Outer Card with Dashed Border
   ========================================================= */
.safety-card {
  width: 100%;
  background-color: var(--card-bg);
  border: 2px dashed var(--card-border-dashed);
  border-radius: 20px;
  padding: 64px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.safety-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(15, 23, 42, 0.08);
  border-color: #94a3b8;
}

/* =========================================================
   Circular Badge with Shield
   ========================================================= */
.icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.safety-card:hover .icon-badge {
  transform: scale(1.08);
}

.shield-icon {
  width: 28px;
  height: 34px;
  display: block;
}

/* =========================================================
   Typography & Accent Line
   ========================================================= */
.protocol-title {
  color: var(--title-color);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 16px 0;
}

.protocol-description {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 28px;
}

/* Two-Tone Gradient Line (Olive Green left -> Warm Caramel right) */
.accent-line {
  width: 64px;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(
    90deg, 
    var(--accent-left) 0%, 
    var(--accent-left) 48%, 
    var(--accent-right) 52%, 
    var(--accent-right) 100%
  );
}

/* =========================================================
   Responsive Breakpoints
   ========================================================= */
@media (max-width: 768px) {
  .safety-protocols-section {
    padding: 40px 16px 60px;
  }

  .safety-card {
    padding: 44px 22px;
    border-radius: 18px;
  }

  .protocol-title {
    font-size: 26px;
  }

  .protocol-description {
    font-size: 15.5px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .safety-card {
    padding: 36px 16px;
    border-radius: 16px;
  }

  .icon-badge {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .shield-icon {
    width: 24px;
    height: 30px;
  }

  .protocol-title {
    font-size: 22px;
  }

  .protocol-description {
    font-size: 14px;
  }

  .accent-line {
    width: 52px;
  }
}
/* =========================================================
   STERILIZATION SYSTEMS (EXACT SCREENSHOT UI DESIGN)
   ========================================================= */

.sterilization-section {
  width: 100%;
  background-color: #ffffff;
  padding: 48px 24px 72px;
  box-sizing: border-box;
}

.sterilization-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* 2-Column Responsive Grid */
.sterilization-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

/* --- Left Column Content --- */
.sterilization-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Title & Icon Header */
.sterilization-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sterilization-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sterilization-icon svg {
  width: 100%;
  height: 100%;
}

.sterilization-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  color: #608575; /* Sage Teal matching screenshot */
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

/* Subtitle Description */
.sterilization-subtext {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* Equipment Pills */
.equipment-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.equipment-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 9999px;
  border: 1.5px solid #608575;
  background-color: transparent;
  color: #608575;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.equipment-pill .pill-dot {
  font-size: 16px;
  line-height: 1;
  color: #608575;
}

.equipment-pill:hover {
  background-color: #f2f7f5;
  transform: translateY(-1px);
}

.equipment-pill.active {
  background-color: #ffffff;
  border-color: #608575;
  color: #507364;
  box-shadow: 0 2px 8px rgba(96, 133, 117, 0.15);
}

/* Callout Box with Thick Teal Left Accent Bar */
.sterilization-callout {
  background-color: #f4f9f8;
  border-left: 4.5px solid #608575;
  border-radius: 0 14px 14px 0;
  padding: 22px 24px;
  box-sizing: border-box;
}

.sterilization-callout p {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  color: #475569;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
}

/* --- Right Column Equipment Image --- */
.sterilization-media {
  width: 100%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.1);
  background-color: #e2e8f0;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
  .sterilization-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sterilization-title {
    font-size: 28px;
  }

  .image-wrapper {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .sterilization-section {
    padding: 36px 16px 54px;
  }

  .sterilization-title {
    font-size: 24px;
  }

  .sterilization-subtext {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .equipment-pill {
    padding: 7px 18px;
    font-size: 14px;
  }

  .sterilization-callout {
    padding: 18px 18px;
  }

  .sterilization-callout p {
    font-size: 14px;
  }

  .image-wrapper {
    border-radius: 18px;
    aspect-ratio: 16 / 11;
  }
}
/* =========================================================
   CUSTOMIZED INSTRUMENT KITS (EXACT SCREENSHOT UI DESIGN)
   ========================================================= */

.instrument-kits-section {
  width: 100%;
  background-color: #ffffff;
  padding: 54px 24px 72px;
  box-sizing: border-box;
}

.instrument-kits-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* 2-Column Responsive Grid: Image on Left (1fr), Content on Right (1.05fr) */
.instrument-kits-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  align-items: center;
}

/* --- Left Column: Equipment Image --- */
.instrument-media {
  width: 100%;
}

.instrument-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.08);
  background-color: #f1f5f9;
}

.instrument-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.instrument-image-wrapper:hover img {
  transform: scale(1.03);
}

/* --- Right Column: Content --- */
.instrument-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header with Wrench Icon */
.instrument-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.instrument-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1e293b;
}

.instrument-icon svg {
  width: 28px;
  height: 28px;
  transform: rotate(-15deg);
}

/* Warm Caramel/Tan Title matching screenshot */
.instrument-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #b38b5d;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

/* Subtitle Description */
.instrument-subtext {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* Pill Button */
.instrument-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.instrument-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 9999px;
  border: 1.8px solid #b38b5d;
  background-color: #ffffff;
  color: #9e7547;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(179, 139, 93, 0.12);
  transition: all 0.2s ease;
  user-select: none;
}

.instrument-pill-dot {
  font-size: 16px;
  line-height: 1;
  color: #b38b5d;
}

.instrument-pill:hover {
  background-color: #fbf8f4;
  transform: translateY(-1px);
}

/* Callout Box with Warm Tan Left Accent Border */
.instrument-callout {
  background-color: #f8fafc;
  border-left: 4.5px solid #b38b5d;
  border-radius: 0 14px 14px 0;
  padding: 22px 24px;
  box-sizing: border-box;
}

.instrument-callout p {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #475569;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
  .instrument-kits-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* On tablet/mobile, stack image on top or under title */
  .instrument-media {
    order: 2;
  }
  
  .instrument-info {
    order: 1;
  }

  .instrument-title {
    font-size: 28px;
  }

  .instrument-image-wrapper {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .instrument-kits-section {
    padding: 36px 16px 54px;
  }

  .instrument-title {
    font-size: 24px;
  }

  .instrument-subtext {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .instrument-pill {
    padding: 7px 18px;
    font-size: 14px;
  }

  .instrument-callout {
    padding: 18px;
  }

  .instrument-callout p {
    font-size: 14px;
  }

  .instrument-image-wrapper {
    border-radius: 18px;
    aspect-ratio: 16 / 11;
  }
}
/* =========================================================
   SINGLE-USE DISPOSABLES (EXACT SCREENSHOT UI DESIGN)
   ========================================================= */

.disposables-section {
  width: 100%;
  background-color: #ffffff;
  padding: 54px 24px 72px;
  box-sizing: border-box;
}

.disposables-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* 2-Column Responsive Grid: Content on Left (1.05fr), Image on Right (1fr) */
.disposables-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}

/* --- Left Column: Info --- */
.disposables-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header with Gloves Icon */
.disposables-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.disposables-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disposables-icon svg {
  width: 28px;
  height: 28px;
}

/* Sage Green Title matching screenshot */
.disposables-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #608575;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

/* Subtitle Description */
.disposables-subtext {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* Pill Button */
.disposables-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.disposables-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 9999px;
  border: 1.8px solid #608575;
  background-color: #ffffff;
  color: #507364;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(96, 133, 117, 0.12);
  transition: all 0.2s ease;
  user-select: none;
}

.disposables-pill-dot {
  font-size: 16px;
  line-height: 1;
  color: #608575;
}

.disposables-pill:hover {
  background-color: #f2f7f5;
  transform: translateY(-1px);
}

/* Callout Box with Thick Sage Green Left Accent Bar */
.disposables-callout {
  background-color: #f4f9f8;
  border-left: 4.5px solid #608575;
  border-radius: 0 14px 14px 0;
  padding: 22px 24px;
  box-sizing: border-box;
}

.disposables-callout p {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #475569;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
}

/* --- Right Column: Image --- */
.disposables-media {
  width: 100%;
}

.disposables-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.08);
  background-color: #f1f5f9;
}

.disposables-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.disposables-image-wrapper:hover img {
  transform: scale(1.03);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
  .disposables-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .disposables-title {
    font-size: 28px;
  }

  .disposables-image-wrapper {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .disposables-section {
    padding: 36px 16px 54px;
  }

  .disposables-title {
    font-size: 24px;
  }

  .disposables-subtext {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .disposables-pill {
    padding: 7px 18px;
    font-size: 14px;
  }

  .disposables-callout {
    padding: 18px;
  }

  .disposables-callout p {
    font-size: 14px;
  }

  .disposables-image-wrapper {
    border-radius: 18px;
    aspect-ratio: 16 / 11;
  }
}

/* =========================================================
   OUR STERILIZATION PROCESS (EXACT 1:1 SCREENSHOT UI DESIGN)
   ========================================================= */

.sterilization-process-section {
  width: 100%;
  background-color: #ffffff;
  padding: 64px 24px 96px;
  box-sizing: border-box;
}

.sterilization-process-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Header */
.process-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 54px;
}

.process-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #2b3545;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 18px 0;
}

/* Two-Tone Decorative Line (#628271 left, #b89267 right) */
.process-accent-line {
  width: 60px;
  height: 3.5px;
  border-radius: 9999px;
  background: linear-gradient(
    90deg, 
    #628271 0%, 
    #628271 48%, 
    #b89267 52%, 
    #b89267 100%
  );
}

/* Timeline Layout */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Vertical Connecting Rail Line */
.timeline-track {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 28px;
  width: 2px;
  background-color: #e5e7eb;
  z-index: 1;
}

/* Step Row: Number Badge (Left) + Card (Right) */
.process-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  z-index: 2;
  transition: transform 0.25s ease;
}

/* Circle Number Badges */
.step-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  user-select: none;
}

/* Badge 1 & 3: Muted Sage Green */
.badge-sage {
  background-color: #769686;
}

/* Badge 2: Warm Tan / Caramel */
.badge-tan {
  background-color: #aa885d;
}

.step-number {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

/* Content Card */
.process-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 26px 36px;
  border: 1px solid #f0f3f6;
  box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.06), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Card Titles */
.card-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.28;
  margin: 0 0 10px 0;
}

/* Step 1 & 3 Title Color: Sage Green */
.title-sage {
  color: #638575;
}

/* Step 2 Title Color: Warm Tan / Caramel */
.title-tan {
  color: #a78457;
}

/* Card Description */
.card-desc {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #596370;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.62;
  margin: 0;
}

/* Interactive Hover States */
.process-step:hover .step-badge {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.process-step:hover .process-card {
  transform: translateY(-2px);
  border-color: #e2e8f0;
  box-shadow: 0 14px 34px -4px rgba(0, 0, 0, 0.09), 0 6px 16px -2px rgba(0, 0, 0, 0.04);
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 768px) {
  .sterilization-process-section {
    padding: 50px 16px 68px;
  }

  .process-header {
    margin-bottom: 40px;
  }

  .process-timeline {
    gap: 24px;
  }

  .process-step {
    gap: 22px;
  }

  .timeline-track {
    left: 24px;
  }

  .step-badge {
    width: 50px;
    height: 50px;
  }

  .step-number {
    font-size: 20px;
  }

  .process-card {
    padding: 20px 24px;
  }

  .card-title {
    font-size: 19px;
  }

  .card-desc {
    font-size: 14.5px;
  }
}

@media (max-width: 520px) {
  .process-step {
    gap: 16px;
  }

  .timeline-track {
    left: 20px;
  }

  .step-badge {
    width: 42px;
    height: 42px;
  }

  .step-number {
    font-size: 17px;
  }

  .process-card {
    padding: 16px 18px;
    border-radius: 12px;
  }

  .card-title {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .card-desc {
    font-size: 13.5px;
    line-height: 1.5;
  }
}
/* =========================================================
   WHY OUR TECHNOLOGY MATTERS (EXACT 1:1 SCREENSHOT UI DESIGN)
   Append this to your existing style.css file
   ========================================================= */

.why-tech-section {
  position: relative;
  width: 100%;
  background-color: #f7f9fb;
  padding: 72px 24px 92px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Subtle decorative corner shapes matching screenshot background */
.why-tech-bg-shape-top {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.65) 0%, rgba(241, 245, 249, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.why-tech-bg-shape-bottom {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.45) 0%, rgba(241, 245, 249, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.why-tech-container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  z-index: 1;
}

/* Header */
.why-tech-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.why-tech-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #2b3545;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 16px 0;
}

.why-tech-subtitle {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #596370;
  font-size: clamp(15px, 1.8vw, 16.5px);
  font-weight: 400;
  line-height: 1.62;
  max-width: 720px;
  margin: 0 auto 24px;
}

/* Two-Tone Decorative Line (#628271 left, #b89267 right) */
.why-tech-accent-line {
  width: 60px;
  height: 3.5px;
  border-radius: 9999px;
  background: linear-gradient(
    90deg, 
    #628271 0%, 
    #628271 48%, 
    #b89267 52%, 
    #b89267 100%
  );
}

/* 3-Column Cards Grid */
.why-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Individual Card */
.why-tech-card {
  background-color: #ffffff;
  border: 1px solid #f0f3f6;
  border-radius: 20px;
  padding: 42px 28px 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.why-tech-card:hover {
  transform: translateY(-4px);
  border-color: #e2e8f0;
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.08), 0 6px 16px -2px rgba(0, 0, 0, 0.03);
}

/* Circular Dashed Icon Badge */
.why-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.8px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background-color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
}

.why-tech-card:hover .why-icon-badge {
  transform: scale(1.1);
}

.badge-precision:hover,
.why-tech-card:hover .badge-precision {
  border-color: #608575;
}

.badge-time:hover,
.why-tech-card:hover .badge-time {
  border-color: #a78457;
}

.badge-comfort:hover,
.why-tech-card:hover .badge-comfort {
  border-color: #608575;
}

/* SVG Icons inside Badge */
.why-icon-badge svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* Card Titles */
.why-card-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0 0 14px 0;
}

/* Precision & Comfort Titles (Sage Green) */
.title-precision,
.title-comfort {
  color: #608575;
}

/* Time Title (Warm Tan / Caramel) */
.title-time {
  color: #a78457;
}

/* Card Description */
.why-card-desc {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #596370;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.62;
  margin: 0;
  max-width: 290px;
}

/* Responsive Breakpoints */
@media (max-width: 960px) {
  .why-tech-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
    gap: 22px;
  }

  .why-tech-card {
    padding: 34px 24px 30px 24px;
  }
}

@media (max-width: 640px) {
  .why-tech-section {
    padding: 50px 16px 68px;
  }

  .why-tech-header {
    margin-bottom: 36px;
  }

  .why-tech-title {
    font-size: 25px;
  }

  .why-tech-subtitle {
    font-size: 14.5px;
    margin-bottom: 20px;
  }

  .why-icon-badge {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }

  .why-icon-badge svg {
    width: 30px;
    height: 30px;
  }

  .why-card-title {
    font-size: 19px;
  }

  .why-card-desc {
    font-size: 13.8px;
  }
}
/* =========================================================
   HEALING INSIGHTS (EXACT 1:1 SCREENSHOT UI DESIGN)
   Append this to your existing style.css file
   ========================================================= */

.healing-insights-section {
  width: 100%;
  background: linear-gradient(180deg, #023821 0%, #034529 20%, #034c2c 60%, #023820 100%);
  color: #ffffff;
  padding: 84px 24px 116px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.healing-insights-container {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.healing-header {
  margin-bottom: 68px;
}

.healing-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Two-Tone Title: "Healing" in Crisp White, "Insights" in Mint Green */
.healing-title .text-white {
  color: #ffffff;
}

.healing-title .text-mint {
  color: #72e4b3;
}

.healing-subtitle {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  line-height: 1.62;
  max-width: 660px;
  margin: 0 auto;
}

/* Empty State Container */
.healing-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
}

/* Circular Magnifying Glass Icon Badge */
.healing-icon-badge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: rgba(14, 115, 71, 0.65);
  border: 1px solid rgba(114, 228, 179, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.healing-empty-state:hover .healing-icon-badge {
  transform: scale(1.1);
  background-color: rgba(16, 130, 80, 0.85);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.healing-icon-badge svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* Empty State Title */
.healing-empty-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #ffffff;
  font-size: clamp(22px, 2.6vw, 27px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

/* Empty State Description */
.healing-empty-desc {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #a3e7cb;
  font-size: clamp(14px, 1.6vw, 15.5px);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .healing-insights-section {
    padding: 64px 20px 88px;
  }

  .healing-header {
    margin-bottom: 48px;
  }

  .healing-title {
    font-size: 32px;
  }

  .healing-subtitle {
    font-size: 15px;
  }

  .healing-icon-badge {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
  }

  .healing-icon-badge svg {
    width: 28px;
    height: 28px;
  }

  .healing-empty-title {
    font-size: 22px;
  }

  .healing-empty-desc {
    font-size: 14px;
  }
}

/* =========================================================
   BOOK YOUR APPOINTMENT (EXACT 1:1 SCREENSHOT UI DESIGN)
   Append this to your existing style.css file
   ========================================================= */

.booking-section {
  width: 100%;
  background-color: #eaf1ed;
  padding: 76px 20px 96px;
  box-sizing: border-box;
}

.booking-container {
  max-width: 620px;
  margin: 0 auto;
}

/* Header */
.booking-header {
  text-align: center;
  margin-bottom: 32px;
}

.booking-title {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e3d2f;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.booking-subtitle {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #4b5851;
  font-size: clamp(15px, 1.8vw, 16.5px);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* White Form Card */
.booking-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 36px 36px 40px;
  box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Form Groups */
.booking-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.booking-label {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #1e3d2f;
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-label .required-star {
  color: #1e3d2f;
  font-weight: 700;
}

/* Inputs & Select */
.booking-input,
.booking-select {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  box-sizing: border-box;
  border: 1.5px solid #e1e7e3;
  border-radius: 12px;
  background-color: #ffffff;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.booking-input:focus,
.booking-select:focus {
  border-color: #2b553e;
  box-shadow: 0 0 0 3px rgba(35, 75, 50, 0.12);
}

/* Custom Select with Caret Arrow */
.booking-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%231e293b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

.booking-select:invalid,
.booking-select option[value=""] {
  color: #94a3b8;
}

.booking-select option {
  color: #1e293b;
}

/* Two-Tone Gradient WhatsApp Button (Forest Green to Earthy Mocha Brown) */
.booking-submit-btn {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(90deg, #224a30 0%, #274b33 40%, #4b3a2f 82%, #563c2f 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(35, 75, 50, 0.25);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, opacity 0.2s ease;
}

.booking-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(35, 75, 50, 0.32);
  opacity: 0.96;
}

.booking-submit-btn:active {
  transform: translateY(0);
}

.booking-phone-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .booking-section {
    padding: 56px 16px 72px;
  }

  .booking-card {
    padding: 26px 20px 30px;
    border-radius: 16px;
  }

  .booking-title {
    font-size: 26px;
  }

  .booking-subtitle {
    font-size: 14.5px;
  }

  .booking-input,
  .booking-select {
    height: 48px;
    font-size: 14.5px;
  }

  .booking-submit-btn {
    height: 50px;
    font-size: 15px;
  }
}