/* ==========================================================================
   DENTICAA DENTAL CLINIC — ORIGINAL WARM LUXURY COMPONENTS & MODULES
   ========================================================================== */

/* 1. TOP UTILITY ANNOUNCEMENT BAR */
.top-bar {
  background-color: var(--text-dark);
  color: #FFFFFF;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E2E0DC;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.top-bar-item:hover {
  color: var(--gold-light);
}

.top-bar-item i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

/* 2. NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 249, 247, 0.98);
  box-shadow: var(--shadow-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  min-height: 86px;
  gap: 20px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 108px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition);
}

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

.brand-emblem {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1A1F28;
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(26, 31, 40, 0.15);
  transition: var(--transition);
}

.brand-logo:hover .brand-emblem {
  transform: scale(1.05);
  border-color: var(--gold-dark);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 1.2px;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  color: #059669;
}

.nav-crm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.nav-crm-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* 3. HERO SECTION */
.hero-section {
  padding: 80px 0 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero-title {
  font-size: 3.3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.18;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-quick-contact {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.hero-contact-link:hover {
  color: var(--gold-dark);
}

/* Clinic Photo & Badges */
.hero-image-wrap {
  position: relative;
}

.hero-clinic-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-subtle);
}

.hero-badge {
  position: absolute;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}

.hero-badge--top {
  top: -15px;
  left: -15px;
}

.hero-badge--bottom {
  bottom: -15px;
  right: -15px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.hero-badge-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.hero-badge-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 4. VERIFIED TRUST BAR */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 30px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-text strong {
  font-size: 0.92rem;
  color: var(--text-dark);
  display: block;
}

.trust-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   5. DOCTOR SHOWCASE SPOTLIGHT (Dr. Gargi Layout in Original Theme)
   ========================================================================== */
.doctor-spotlight-section {
  background-color: var(--bg-primary);
  position: relative;
}

/* Doctor Switcher Tabs */
.doctor-switch-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.doctor-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.doctor-tab-btn i {
  color: var(--gold-dark);
}

.doctor-tab-btn:hover {
  border-color: var(--gold-dark);
  color: var(--text-dark);
}

.doctor-tab-btn.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(26, 31, 40, 0.2);
}

.doctor-tab-btn.active i {
  color: var(--gold-light);
}

/* Showcase Card (Compact Sleek Luxury Frame) */
.doctor-spotlight-card {
  display: none;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: center;
  background: #111720;
  border: 1.5px solid rgba(199, 167, 106, 0.35);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-hover), 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  transition: var(--transition);
}

.doctor-spotlight-card.active {
  display: grid;
  animation: fadeInSpotlight 0.4s ease;
}

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

/* Left Column: Portrait Photo & Frame */
.doctor-portrait-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(199, 167, 106, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #0D1219;
  height: 380px;
  width: 100%;
}

.doctor-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Top-Right Excellence Gold Badge */
.doctor-exp-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(17, 23, 32, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.doctor-exp-badge i {
  color: var(--gold-primary);
}

/* Bottom Floating Nameplate Overlay */
.doctor-nameplate-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(17, 23, 32, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(199, 167, 106, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.doctor-nameplate-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.doctor-nameplate-sub {
  font-size: 0.74rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* Right Column: Bio, Headline, Quote, Feature Pills, CTAs */
.doctor-info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  background: rgba(199, 167, 106, 0.12);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  align-self: flex-start;
}

.doctor-main-headline {
  font-size: 1.75rem;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.doctor-italic-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2.5px solid var(--gold-primary);
  margin-bottom: 12px;
}

.doctor-bio-text {
  font-size: 0.88rem;
  color: #C0C5CF;
  line-height: 1.6;
  margin-bottom: 12px;
}

.doctor-bio-text strong {
  color: #FFFFFF;
}

/* 2x2 Feature Pills with Green Checks */
.doctor-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.doctor-feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #E2E8F0;
  transition: var(--transition);
}

.doctor-feature-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(16, 185, 129, 0.6);
}

.doctor-feature-pill i {
  color: #10B981;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Action CTAs */
.doctor-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.doctor-actions-row .btn {
  padding: 10px 22px;
  font-size: 0.86rem;
}

.btn-doctor-whatsapp {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  box-shadow: none;
}

.btn-doctor-whatsapp:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #25D366;
  color: #FFFFFF;
}

/* 6. SERVICES SECTION */
.services-section {
  background-color: var(--bg-secondary);
}

.services-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.svc-filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.svc-filter-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.svc-filter-btn.active {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-primary);
}

.svc-card.hidden {
  display: none;
}

.svc-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-img {
  transform: scale(1.05);
}

.svc-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(26, 31, 40, 0.85);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.svc-card-badge--gold {
  background: var(--gold-primary);
  color: #FFFFFF;
}

.svc-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.svc-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.svc-card-title {
  font-size: 1.3rem;
  color: var(--text-dark);
}

.svc-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.svc-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 22px;
  margin-top: auto;
}

.svc-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-card-features i {
  color: var(--gold-dark);
}

.svc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.svc-card-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-card-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
}

.svc-card-cta:hover {
  color: var(--text-dark);
}

/* 7. SMILE GALLERY / INTERACTIVE BEFORE & AFTER SLIDER (Image 1 Style) */
.transformations-section {
  background-color: var(--bg-primary);
}

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

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ba-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-border);
}

.ba-slider-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: #111720;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 2.5px solid var(--gold-primary);
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.45);
  transition: width 0.05s linear;
}

.ba-before-wrap .ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gold Circle Handle with < > arrows */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 2px solid #FFFFFF;
  color: #1A1F28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -1px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  z-index: 5;
  pointer-events: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ba-slider-wrapper:hover .ba-handle {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold-light);
}

/* Badges matching Image 1 */
.ba-badge {
  position: absolute;
  bottom: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.ba-badge-before {
  left: 12px;
  background: #E11D48; /* Red pill badge */
  color: #FFFFFF;
}

.ba-badge-after {
  right: 12px;
  background: #059669; /* Green / Emerald pill badge */
  color: #FFFFFF;
}

/* Hidden Range Slider for Accessible & Touch Dragging */
.ba-range-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
}

.ba-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ba-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  align-self: flex-start;
}

.ba-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.ba-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.transformation-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 8. FAQ ACCORDION */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--gold-dark);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

/* 8. VERIFIED PATIENT REVIEWS (Google Business Integration) */
.reviews-section {
  background-color: var(--bg-secondary);
}

.reviews-summary-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  max-width: 500px;
  margin: 0 auto 36px auto;
  box-shadow: var(--shadow-subtle);
}

.reviews-stars {
  color: #F59E0B;
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
}

.reviews-score {
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.reviews-source {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-primary);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

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

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.review-verified-badge {
  font-size: 0.75rem;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.review-google-icon {
  font-size: 1.4rem;
  color: #4285F4;
}

.review-stars-row {
  color: #F59E0B;
  font-size: 0.88rem;
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-treatment-tag {
  font-size: 0.76rem;
  color: var(--gold-dark);
  font-weight: 700;
  background: var(--gold-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.google-cta-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.google-cta-box h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.google-cta-box p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* 9. LOCATION & NAP CARD */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.nap-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nap-title {
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.nap-address-block {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.nap-phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.nap-phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  transition: var(--transition);
}

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

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  min-height: 380px;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* 10. APPOINTMENT BOOKING FORM */
.booking-section {
  background: var(--bg-secondary);
}

.booking-wrapper {
  max-width: 740px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

/* 11. FOOTER */
.footer {
  background: #151A22;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px 0;
  color: #A6ABB5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
}

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

.footer-links a {
  color: #A6ABB5;
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* ==========================================================================
   12. FLOATING ACTION DOCK (3 Icons: WhatsApp, AI Chatbot, Direct Call)
   ========================================================================== */
.floating-action-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  border: 2px solid #FFFFFF;
}

.floating-action-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Tooltip */
.floating-action-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-action-btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* Call Button */
.btn-floating-call {
  background: var(--text-dark);
  color: #FFFFFF;
}

.btn-floating-call:hover {
  background: #000000;
  color: var(--gold-light);
}

/* WhatsApp Button */
.btn-floating-wa {
  background: #25D366;
  color: #FFFFFF;
}

.btn-floating-wa:hover {
  background: #1EBE5A;
}

/* AI Chatbot Button with animated badge */
.btn-floating-ai {
  background: linear-gradient(135deg, #1A1F28 0%, #0F141C 100%);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.btn-floating-ai:hover {
  background: #1A1F28;
  color: var(--gold-light);
  box-shadow: 0 0 25px rgba(199, 167, 106, 0.4);
}

.ai-pulse-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #FFFFFF;
}

.ai-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #10B981;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ==========================================================================
   13. MULTILINGUAL AI DENTAL CHATBOT MODAL
   ========================================================================== */
.chatbot-modal {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 380px;
  height: 560px;
  max-height: calc(100vh - 120px);
  background: var(--bg-card);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: var(--text-dark);
  color: #FFFFFF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(199, 167, 106, 0.2);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  position: relative;
}

.chatbot-online-pulse {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  border: 1.5px solid var(--text-dark);
}

.chatbot-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 2px;
}

.chatbot-status {
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 600;
}

.chatbot-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chatbot-header-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.82rem;
}

.chatbot-header-btn:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
}

/* Quick Query Chips */
.chatbot-quick-chips {
  padding: 10px 14px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
}

.chip-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.chip-btn:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

/* Chat Body */
.chatbot-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-primary);
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.chat-msg-bot {
  align-self: flex-start;
}

.chat-msg-user {
  align-self: flex-end;
}

.msg-content {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.55;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chat-msg-bot .msg-content {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}

.chat-msg-user .msg-content {
  background: var(--text-dark);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
}

.msg-time {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 4px;
  padding: 0 4px;
}

.chat-msg-user .msg-time {
  text-align: right;
}

.btn-chat-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.btn-chat-wa:hover {
  background: #1EBE5A;
}

/* Typing Indicator Dots */
.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 18px !important;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Chat Footer Input */
.chatbot-footer {
  padding: 12px 16px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-dark);
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.chatbot-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.95rem;
}

.chatbot-send-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
}

/* ==========================================================================
   14. SUBPAGE LAYOUTS & SPECIALIST AUTHORITY CARDS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.doctor-authority-card {
  background: var(--bg-card);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.doctor-authority-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-primary);
}

.doctor-qual {
  display: inline-block;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid var(--gold-border);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.doctor-spec {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.about-highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.about-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-border);
}

