:root {
  --primary: #10172E;
  --secondary: #1557B7;
  --accent: #5FB4F9;
  --text: #525766;
  --white: #FFFFFF;
  --grey-200: #E7E7E7;
  --grey-300: #D5D5D7;
  --grey-400: #A4AEBE;
  --gold: #FCBC45;
  --cyan: #28B9DA;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --body-bg: #F7F9FC;
  --radius-btn: 20px 20px 3px 3px;
  --radius-card: 10px 10px 10px 10px;
  --radius-card-lg: 30px 30px 5px 5px;
  --radius-card-sm: 5px 5px 5px 5px;
  --radius-faq: 20px 20px 3px 3px;
  --radius-icon: 30px 30px 3px 3px;
  --shadow-card: 0px 3px 30px 0px rgba(16, 23, 46, 0.1);
  --shadow-sm: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  --shadow-none: 0px 3px 15px 0px rgba(0, 0, 0, 0);
  --transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform .3s;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--body-bg);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar i {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

.top-bar a {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  transition: color .2s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--secondary);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

.offcanvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1000;
  opacity: 0;
  transition: opacity .3s;
}

.offcanvas-overlay.open {
  display: block;
  opacity: 1;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 95%;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right .35s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, .1);
}

.offcanvas.open {
  right: 0;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--grey-200);
}

.offcanvas-logo img {
  width: 140px;
  height: auto;
  display: block;
}

.offcanvas-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}

.offcanvas-close:hover {
  background: var(--body-bg);
}

.offcanvas-topbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
}

.offcanvas-topbar i {
  margin-right: 6px;
}

.offcanvas-topbar a {
  color: var(--accent);
  font-weight: 600;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  padding: 10px;
  flex: 1;
  overflow-y: auto;
}

.offcanvas-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  transition: color .2s;
  white-space: nowrap;
  padding: 10px;
  transition: 0.2s all;
  border-bottom: 1px solid var(--grey-300);
}

.offcanvas-nav a:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-call {
  background: var(--secondary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}

.btn-call:hover {
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}

.btn-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1A2A4A 55%, #0A1C2E 100%);
  color: var(--white);
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231557B7' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}

.hero-inner {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: #C8D8E8;
  margin-bottom: 10px;
  max-width: 520px;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-qualifier {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #9AB8C8;
  margin-bottom: 32px;
}

.hero-qualifier svg {
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-hero-call {
  background: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--white);
  transition: var(--transition);
}

.btn-hero-call:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.btn-hero-wa {
  background: #25D366;
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #25D366;
  transition: var(--transition);
}

.btn-hero-wa:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.hero-stat {
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-stat .num i {
  font-size: 1em;
  vertical-align: middle;
}

.hero-stat .lbl {
  font-size: 0.72rem;
  font-weight: 400;
  color: #9AB8C8;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 4px;
}

.stat-div {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
}

.hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-card);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hero-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-card .doc-qual {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
}

.hero-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #C8DCE4;
}

.check-icon {
  width: 18px;
  height: 18px;
  background: rgba(95, 180, 249, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 10px;
  height: 10px;
}

.rating-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 12px 16px;
  background: rgba(21, 87, 183, .25);
  border-radius: 10px;
  flex-direction: column;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

.stars i {
  font-size: 14px;
  vertical-align: middle;
}

.rating-text {
  font-size: 0.82rem;
  color: #A8C8D8;
}

.rating-text strong {
  color: var(--white);
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 20px 24px;
}

.trust-inner {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 40px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}

.trust-item .ico {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item .ico svg {
  width: 18px;
  height: 18px;
}

section {
  padding: 80px 15px;
}

.section-inner {
  max-width: var(--container);
  margin: auto;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-400);
  max-width: 500px;
  margin-bottom: 48px;
}

.implant-types {
  background: var(--white);
}

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

.type-card {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-card);
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  background: var(--white);
}

.type-card:hover {
  box-shadow: 0px 6px 40px 0px rgba(16, 23, 46, 0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.type-card.featured {
  border: 2px solid var(--accent);
}

.type-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 20px;
}

.type-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.type-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.type-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.type-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
}

.type-card .best-for {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: #E6F0FF;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

.process {
  background: var(--body-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 100px;
  right: 100px;
  height: 3px;
  background: linear-gradient(90deg, #10162d, #5fb4f9);
  z-index: 0;
  pointer-events: none;
}

@media (max-width:991px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width:768px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
  }
}

@media (max-width:575px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    position: relative;
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(95, 180, 249, .3);
}

.process-step h3 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}

.why {
  background: var(--primary);
  color: var(--white);
}

.why .section-title {
  color: var(--white);
}

.why .section-desc {
  color: #9AB8C8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-card);
  padding: 25px;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.why-card:hover {
  background: rgba(95, 180, 249, .1);
  border-color: rgba(95, 180, 249, .3);
  box-shadow: 0px 6px 40px 0px rgba(16, 23, 46, 0.1);
}

.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(95, 180, 249, .2);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

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

.why-card h3 {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1rem;
}

.why-card p {
  font-size: 0.87rem;
  font-weight: 300;
  color: #9AB8C8;
  line-height: 1.55;
}

.doctor {
  background: var(--white);
}

.doctor-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}

.doc-visual {
  text-align: center;
  background: linear-gradient(145deg, #E6F0FF, #D0E5F8);
  border-radius: var(--radius-btn);
  padding: 36px 28px;
  border: 2px solid var(--grey-200);
}

.doc-avatar-wrap {
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-avatar {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-btn);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21, 87, 183, .3);
  border: 3px solid var(--accent);
}

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

.doc-avatar-ring {
  display: none;
}

.doc-visual h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.doc-visual .qual {
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 24px;
}

.doc-credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text);
  padding: 10px 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--grey-200);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.cred-item:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(95, 180, 249, .15);
  transform: translateX(4px);
}

.cred-item i {
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 1rem;
}

.doc-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.doc-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.spec-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  padding: 10px 14px;
  background: var(--body-bg);
  border-radius: 8px;
  border: 1px solid var(--grey-200);
}

.spec-tag svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.testimonials {
  background: var(--body-bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-card-sm);
  padding: 25px;
  border: none;
  position: relative;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testi-stars i {
  font-size: 13px;
  vertical-align: middle;
}

.testi-text {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.testi-loc {
  font-size: 0.78rem;
  color: var(--grey-400);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-btn);
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.google-badge:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(95, 180, 249, .2);
}

.faq {
  background: var(--white);
  text-align: center;
}

.faq .section-title {
  text-align: center;
}

.faq .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-faq);
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  font-family: 'Poppins', sans-serif;
  transition: background .3s, color .3s;
}

.faq-q:hover {
  background: var(--body-bg);
}

.faq-q.open {
  color: var(--secondary);
}

.faq-q .arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform .3s, color .2s;
}

.faq-q.open .arrow {
  color: var(--secondary);
  transform: rotate(-180deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  text-align: start;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.faq-a.open {
  display: block;
}

.location {
  background: var(--body-bg);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.loc-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 25px;
  border: 1px solid var(--grey-200);
}

.loc-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.5;
}

.loc-detail svg {
  flex-shrink: 0;
  color: var(--secondary);
  margin-top: 2px;
}

.loc-detail strong {
  color: var(--primary);
}

.nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.nearby-tag {
  background: var(--body-bg);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
}

.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: none;
  height: 100%;
  min-height: 400px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.final-cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 80px 24px 10px 24px;
}

.final-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.final-cta .sub-title {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-400);
  max-width: 520px;
  margin: 0 auto 36px;
}

.final-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-final-call {
  background: var(--primary);
  color: var(--white);
  padding: 18px 36px;
  border: 1px solid var(--white) !important;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform .3s;
  border: none;
}

.btn-final-call:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.btn-final-wa {
  background: var(--wa-green);
  color: var(--white);
  padding: 18px 36px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform .3s;
  border: none;
}

.btn-final-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.disclaimer {
  margin-top: 30px !important;
  text-align: start;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: var(--grey-400);
}

.disclaimer i {
  font-size: 25px;
  vertical-align: middle;
  margin-right: 3px;
  color: var(--cyan);
}

footer {
  background: var(--primary);
  color: #8AABB8;
  padding: 20px 24px 20px;
  text-align: center;
}

footer .footer-inner {
  max-width: 1100px;
  border-top: 1px solid #ffffff40;
  padding-top: 30px;
  margin: auto;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 20px;
}

footer .footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: color .15s;
}

footer .footer-links a:hover {
  color: var(--white);
}

footer p {
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 8px;
}

footer strong {
  color: var(--white);
  font-weight: 600;
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  animation: wa-pulse 2.5s infinite;
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.1);
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, .7), 0 0 0 8px rgba(37, 211, 102, .12);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(60px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

[data-animate] {
  opacity: 0;
}

[data-animate].animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.fadeIn {
  animation-name: fadeIn;
}

.animated.fadeInUp {
  animation-name: fadeInUp;
}

.animated.fadeInLeft {
  animation-name: fadeInLeft;
}

.animated.fadeInRight {
  animation-name: fadeInRight;
}

.animated.animated-fast {
  animation-duration: .6s;
}

.animated.animated-slow {
  animation-duration: 1.4s;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
  }

  [data-animate].animated {
    animation: none !important;
  }
}

.elementor-animation-float {
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.elementor-animation-float:hover,
.elementor-animation-float:focus,
.elementor-animation-float:active {
  transform: translateY(-8px);
}

.elementor-animation-grow {
  transition-duration: .3s;
  transition-property: transform;
}

.elementor-animation-grow:hover,
.elementor-animation-grow:focus,
.elementor-animation-grow:active {
  transform: scale(1.1);
}

.elementor-animation-shrink {
  transition-duration: .3s;
  transition-property: transform;
}

.elementor-animation-shrink:hover,
.elementor-animation-shrink:focus,
.elementor-animation-shrink:active {
  transform: scale(.9);
}

.elementor-animation-grow-rotate {
  transition-duration: .3s;
  transition-property: transform;
}

.elementor-animation-grow-rotate:hover,
.elementor-animation-grow-rotate:focus,
.elementor-animation-grow-rotate:active {
  transform: scale(1.1) rotate(4deg);
}

.elementor-animation-pulse-shrink:hover,
.elementor-animation-pulse-shrink:focus,
.elementor-animation-pulse-shrink:active {
  animation-name: elementor-animation-pulse-shrink;
  animation-duration: .3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes elementor-animation-pulse-shrink {
  to {
    transform: scale(.9);
  }
}

.amenities {
  background: var(--white);
}

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

.amen-card {
  text-align: center;
  padding: 25px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-card);
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  background: var(--white);
}

.amen-card:hover {
  box-shadow: 0px 6px 40px 0px rgba(16, 23, 46, 0.08);
  border-color: var(--accent);
}

.amen-ico {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amen-ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amen-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.amen-card p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--grey-400);
}

.before-after {
  background: var(--body-bg);
}

.ba-grid-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.ba-grid {
  padding-bottom: 40px;
}

.ba-grid-wrap .swiper-button-prev,
.ba-grid-wrap .swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  color: var(--white);
  position: absolute;
  top: 44%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}

.ba-grid-wrap .swiper-button-prev {
  left: -60px;
}

.ba-grid-wrap .swiper-button-next {
  right: -60px;
}

.ba-grid-wrap .swiper-button-prev::after,
.ba-grid-wrap .swiper-button-next::after {
  font-size: 1.1rem;
  font-weight: 700;
}

.ba-grid-wrap .swiper-button-prev:hover,
.ba-grid-wrap .swiper-button-next:hover {
  background: var(--secondary);
  color: var(--white);
}

.ba-grid .swiper-pagination {
  bottom: 0;
}

.ba-grid .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--grey-400);
  opacity: 1;
  margin: 0 4px !important;
}

.ba-grid .swiper-pagination-bullet-active {
  background: var(--primary);
}

.ba-case {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: none;
}

.ba-label-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--primary);
}

.ba-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}

.before-tag {
  background: rgba(255, 255, 255, .12);
  color: #A8C8D8;
}

.after-tag {
  background: var(--accent);
  color: var(--white);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.ba-img-wrap {
  position: relative;
  overflow: hidden;
}

.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.ba-img-wrap:hover img {
  transform: scale(1.04);
}

.ba-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  pointer-events: none;
}

.before-overlay {
  background: rgba(16, 23, 46, .75);
  color: #A8C8D8;
}

.after-overlay {
  background: var(--accent);
  color: var(--white);
}

.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  z-index: 1;
}

.ba-divider-line {
  width: 1px;
  height: 60px;
  background: var(--grey-200);
}

.ba-divider-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(95, 180, 249, .35);
}

.ba-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--grey-200);
}

.ba-caption-item {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
  border-right: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ba-caption-item:last-child {
  border-right: none;
}

.ba-caption-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-400);
}

.ba-caption-val {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
}

.ba-cta-row {
  text-align: center;
}

.ba-cta-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
}

.ba-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width:1150px) {
  .ba-grid-wrap .swiper-button-prev {
    left: -25px;
  }

  .ba-grid-wrap .swiper-button-next {
    right: -25px;
  }
}

@media (max-width: 1100px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border: 1px solid #475168;
    border-radius: var(--radius-btn);
    padding: 20px 10px;
  }

  .hero-stat:nth-child(2n) {
    border-right: none;
  }

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

  .doctor-inner {
    gap: 40px;
  }

  .doc-visual {
    padding: 28px 20px;
    width: 100%;
  }

  .header-nav {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .offcanvas-overlay.open {
    display: block;
  }

  .offcanvas.open {
    right: 0;
  }

  .ba-grid-wrap .swiper-button-prev {
    left: 0;
  }

  .ba-grid-wrap .swiper-button-next {
    right: 0;
  }
}

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

  .doctor-inner {
    grid-template-columns: 1fr;
  }

  .doc-visual {
    width: 100%;
  }

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

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

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
  }

  .doc-avatar {
    max-width: 300px;
    height: 100%;
  }

  .amen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ba-grid-wrap .swiper-button-prev,
  .ba-grid-wrap .swiper-button-next {
    display: none;
  }
}

@media (max-width: 600px) {
  section {
    padding: 40px 15px;
  }

  .header-inner {
    padding: 8px 16px;
  }

  .header-logo img {
    width: 120px;
  }

  .btn-call span,
  .btn-wa span {
    display: none;
  }

  .btn-call,
  .btn-wa {
    padding: 10px 12px;
  }

  .top-bar {
    font-size: 0.7rem;
    padding: 6px 12px;
    gap: 6px;
  }

  .top-bar span:first-child {
    display: none;
  }

  .hero {
    padding: 48px 20px 56px;
  }

  .hero-stats {
    gap: 12px;
  }

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

  .doctor-inner {
    gap: 32px;
  }

  .doc-visual {
    padding: 24px 16px;
  }

  .doc-content h2 {
    font-size: 1.4rem;
  }

  .doc-content p {
    font-size: 0.9rem;
  }

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

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .amen-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ba-grid-wrap {
    max-width: 100%;
  }

  .ba-label-row {
    display: none;
  }

  .ba-images {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto 1fr;
  }

  .ba-divider {
    flex-direction: row;
    padding: 10px 0;
  }

  .ba-divider-line {
    width: 30%;
    height: 1px;
  }

  .ba-divider-icon {
    transform: rotate(90deg);
    border-radius: 20px 3px 3px 20px;
  }

  .ba-img-wrap img {
    height: 220px;
  }

  .final-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-final-call,
  .btn-final-wa {
    width: 100%;
    justify-content: center;
  }
}