:root {
  --green: #00563f;
  --green-dark: #003f2e;
  --green-deep: #002f24;
  --green-soft: #0d6b50;
  --gold: #c89b3c;
  --gold-soft: #e6c36a;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --text: #222222;
  --muted: #5d665f;
  --line: #dfe4df;
  --shadow: 0 20px 55px rgba(0, 63, 46, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container-xl {
  max-width: 1160px;
}

.section {
  padding: 6.2rem 0;
}
.section-soft {
  background: var(--off-white);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--green-dark);
}

p {
  margin-top: 0;
}
.section-title {
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1.15rem;
}
.section-lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow-gold {
  color: var(--gold-soft);
}

.btn {
  border-radius: 5px;
  padding: 0.78rem 1.35rem;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border: 1px solid var(--gold);
  box-shadow: 0 10px 24px rgba(200, 155, 60, 0.2);
}
.btn-gold:hover {
  background: var(--gold-soft);
  color: var(--green-dark);
  border-color: var(--gold-soft);
  box-shadow: 0 14px 28px rgba(200, 155, 60, 0.25);
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  box-shadow: 0 12px 26px rgba(0, 86, 63, 0.2);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}
.btn-outline-light-custom {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.btn-outline-light-custom:hover {
  color: #fff;
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.07);
}

.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  padding: 0.55rem 0;
}
.topbar a {
  color: var(--gold-soft);
  font-weight: 700;
}
.topbar-divider {
  margin: 0 0.65rem;
  color: rgba(255, 255, 255, 0.28);
}

.navbar-custom {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
  transition: 0.3s ease;
  z-index: 1030;
}
.navbar-custom.scrolled {
  box-shadow: 0 8px 24px rgba(0, 63, 46, 0.09);
  padding: 0.68rem 0;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: var(--green-dark);
  min-width: 205px;
}
.brand-main {
  font-size: 1.35rem;
  font-weight: 800;
}
.brand-sub {
  margin-top: 0.28rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-link-c {
  position: relative;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.6rem 0.78rem !important;
}
.nav-link-c:hover {
  color: var(--green-soft);
}
.nav-link-c::after {
  content: "";
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.25rem;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link-c:hover::after {
  width: calc(100% - 1.56rem);
}

.hero {
  position: relative;
  padding: 5.7rem 0 3.2rem;
  background: var(--green-dark);
  color: #fff;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.hero-glow-one {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -250px;
  background: radial-gradient(
    circle,
    rgba(200, 155, 60, 0.18),
    transparent 68%
  );
}
.hero-glow-two {
  width: 430px;
  height: 430px;
  left: -260px;
  bottom: -270px;
  background: radial-gradient(
    circle,
    rgba(230, 195, 106, 0.1),
    transparent 68%
  );
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5vw, 3.7rem);
  line-height: 1.04;
}
.trust-pill {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 0.42rem 0.82rem;
  border: 1px solid rgba(230, 195, 106, 0.5);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(200, 155, 60, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero-subtitle {
  margin: 1.25rem 0 0.4rem;
  color: var(--gold-soft);
  font-size: 1.15rem;
  font-weight: 700;
}
.hero-copy {
  max-width: 590px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
}
.principal-line {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}
.principal-line strong {
  color: var(--gold-soft);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}
.implant-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}
.implant-link:hover {
  color: var(--gold-soft);
}
.implant-link span {
  color: var(--gold-soft);
}

.hero-media {
  position: relative;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}
.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  object-position: 75% 24%;
}
.hero-address {
  position: absolute;
  left: 2rem;
  bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 80%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 47, 36, 0.9);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero-address > div {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  line-height: 1.45;
}
.hero-address strong {
  color: var(--gold-soft);
}
.address-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 700;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-strip span {
  padding: 1rem 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.trust-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.image-frame {
  overflow: hidden;
  border-radius: 14px;
  background: var(--off-white);
  box-shadow: var(--shadow);
}
.image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.care-values {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green);
  font-weight: 800;
  font-size: 1.03rem;
}
.care-values i {
  color: var(--gold);
  font-style: normal;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3.2rem;
  text-align: center;
}
.section-heading p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 620px;
}

.service-card {
  height: 100%;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 155, 60, 0.55);
  box-shadow: var(--shadow);
}
.service-card.featured {
  border-top: 3px solid var(--gold);
}
.service-number {
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.12rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.service-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.implant-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.implant-panel {
  position: relative;
  overflow: hidden;
  padding: 4rem;
  border-radius: 18px;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 25px 65px rgba(0, 63, 46, 0.2);
}
.implant-panel::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 155, 60, 0.17),
    transparent 68%
  );
}
.implant-panel .section-title {
  color: #fff;
}
.implant-panel p {
  color: rgba(255, 255, 255, 0.76);
}
.implant-list {
  position: relative;
  z-index: 1;
  padding: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}
.implant-list h3 {
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-size: 1.05rem;
}
.implant-item {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.86rem;
}
.implant-item:last-child {
  border-bottom: 0;
}

.doctor-card {
  padding: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(0, 63, 46, 0.06);
}
.doctor-image {
  overflow: hidden;
  border-radius: 12px;
  background: var(--off-white);
}
.doctor-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.image-note {
  margin: 0.6rem 0 0;
  color: #7a817b;
  font-size: 0.7rem;
  text-align: center;
}
.interest-title {
  margin: 1.65rem 0 0.9rem;
  font-size: 1rem;
}
.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.9rem;
  margin-bottom: 1.55rem;
}
.interest-grid span {
  padding: 0.62rem 0.75rem;
  border-left: 2px solid var(--gold);
  background: var(--off-white);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
}
.text-link {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
}
.text-link:hover {
  color: var(--gold);
}
.text-link span {
  color: var(--gold);
}

.why-card {
  height: 100%;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.why-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}
.why-card h3 {
  font-size: 1rem;
  line-height: 1.35;
}
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}
.emergency-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.7rem 2rem;
  border: 1px solid rgba(200, 155, 60, 0.42);
  border-radius: 12px;
  background: #fff;
}
.emergency-callout .eyebrow {
  margin-bottom: 0.25rem;
  color: var(--gold);
}
.emergency-callout h3 {
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
}
.emergency-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-section {
  background: #fff;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  background: var(--line);
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-height: 112px;
  padding: 1rem 1.15rem;
  background: #fff;
}
.detail-label {
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-detail strong,
.contact-detail > span:not(.detail-label) {
  color: var(--green-dark);
  font-size: 0.83rem;
}
.contact-detail a {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}
.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2.4rem;
  border-radius: 16px;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}
.contact-panel h3 {
  color: #fff;
  font-size: 1.5rem;
}
.contact-panel p {
  font-size: 0.9rem;
}
.contact-panel-line {
  width: 55px;
  height: 2px;
  margin: 0.9rem 0 1.25rem;
  background: var(--gold);
}
.contact-panel strong,
.contact-panel > span {
  font-size: 0.86rem;
}
.contact-panel a {
  margin-top: 0.55rem;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

footer {
  padding: 4rem 0 1.6rem;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.66);
}
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}
.footer-brand span {
  margin-top: 0.28rem;
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-copy {
  margin: 1rem 0 0.55rem;
  font-size: 0.85rem;
}
.footer-address {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
}
.footer-phone {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.84rem;
}
footer h4 {
  margin-bottom: 0.95rem;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer li {
  margin-bottom: 0.45rem;
}
footer li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}
footer li a:hover {
  color: var(--gold-soft);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .navbar-custom {
    padding: 0.75rem 0;
  }
  .navbar-nav {
    margin-top: 1rem;
  }
  .hero {
    padding-top: 4.3rem;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 7vw, 3.55rem);
  }
  .hero-media {
    margin-top: 1rem;
  }
  .implant-panel {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 4.2rem 0;
  }
  .topbar {
    text-align: center;
  }
  .topbar-divider {
    display: none;
  }
  .topbar .container-xl {
    flex-direction: column;
  }
  .brand {
    min-width: 0;
  }
  .hero {
    padding: 3.8rem 0 2.4rem;
  }
  .hero h1 {
    font-size: 2.45rem;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .hero-address {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    max-width: none;
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
  }
  .trust-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .trust-strip span:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .implant-panel {
    padding: 2rem 1.25rem;
    border-radius: 12px;
  }
  .doctor-card {
    padding: 1.25rem;
  }
  .interest-grid {
    grid-template-columns: 1fr;
  }
  .emergency-callout {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-actions .btn {
    width: 100%;
    text-align: center;
  }
  .contact-panel {
    padding: 1.8rem;
  }
}

@media print {
  .topbar,
  .navbar-custom,
  .hero-actions,
  .btn,
  footer {
    display: none !important;
  }
  .section {
    padding: 2rem 0;
  }
}
