/* ==========================================================================
   DRG. ANDINI PUTRI, Sp.Ort - PORTFOLIO & DENTAL CLINIC STYLESHEET
   Aesthetic Medical Blue & Clean White Modern Design
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;
  --primary-950: #082f49;

  /* Accent & Gradients */
  --accent-blue: #0088ff;
  --accent-cyan: #06b6d4;
  --accent-soft: #f0f7ff;
  --gradient-primary: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
  --gradient-hero: linear-gradient(180deg, #e8f5fe 0%, #f0f9ff 60%, #ffffff 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.8) 100%);
  --gradient-cta: linear-gradient(135deg, #0284c7 0%, #0077cc 50%, #0ea5e9 100%);
  --gradient-badge: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(56, 189, 248, 0.08) 100%);

  /* Neutrals */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Status Colors */
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --star: #f59e0b;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-handwritten: 'Caveat', cursive, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px -1px rgba(2, 132, 199, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(2, 132, 199, 0.12), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 35px -8px rgba(2, 132, 199, 0.16), 0 8px 12px -4px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.28);
  --shadow-inner: inset 0 2px 4px 0 rgba(2, 132, 199, 0.06);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Custom Aesthetic Blue Scrollbar --- */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #f0f8ff;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  border-radius: 9999px;
  border: 2px solid #f0f8ff;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0ea5e9 0%, #0369a1 100%);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #38bdf8 #f0f8ff;
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: #fbfdff;
  color: var(--slate-700);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Container & Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-bg-alt {
  background-color: #f6faff;
  position: relative;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header.text-left {
  text-align: left;
  margin: 0 0 32px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-600);
  background: var(--primary-100);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.08);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title .text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* --- Buttons & Interactive Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 6px 20px -2px rgba(2, 132, 199, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -2px rgba(2, 132, 199, 0.48);
  filter: brightness(1.05);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--primary-700);
  border: 1.5px solid var(--primary-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary-400);
  color: var(--primary-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-700);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-700);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: var(--primary-50);
  color: var(--primary-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn:hover .btn-icon-circle {
  background: var(--primary-600);
  color: var(--white);
  transform: scale(1.05);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 242, 254, 0.6);
  transition: all var(--transition-normal);
  padding: 14px 0;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px -6px rgba(2, 132, 199, 0.1);
  border-bottom-color: rgba(186, 230, 253, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
}

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

.logo-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.12);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(240, 249, 255, 0.85);
  padding: 5px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(186, 230, 253, 0.65);
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.06);
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate-600);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.nav-link:hover {
  color: var(--primary-700);
  background: rgba(255, 255, 255, 0.95);
}

.nav-link.active {
  color: var(--primary-700);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12);
}

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

@media (max-width: 1260px) and (min-width: 1025px) {
  .nav-menu {
    gap: 2px;
    padding: 4px 6px;
  }
  .nav-link {
    font-size: 0.82rem;
    padding: 6px 10px;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary-700);
  border: 1px solid var(--primary-200);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 135px;
  padding-bottom: 55px;
  background-color: #f0f9ff;
  background-image: 
    linear-gradient(90deg, #f0f9ff 0%, #f0f9ff 38%, rgba(240, 249, 255, 0.95) 48%, rgba(240, 249, 255, 0.55) 60%, rgba(240, 249, 255, 0.1) 75%, rgba(240, 249, 255, 0) 90%),
    linear-gradient(180deg, rgba(240, 249, 255, 0.85) 0%, rgba(240, 249, 255, 0) 12%, rgba(240, 249, 255, 0) 88%, #f0f9ff 100%),
    url('../images/hero_doctor_banner.webp');
  background-repeat: no-repeat;
  background-position: center, center, right 0% center;
  background-size: 100% 100%, 100% 100%, auto 100%;
  overflow: hidden;
  min-height: 650px;
}

/* Ambient glow orbs */
.hero-glow-1 {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* --- Hero Left Column --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 18px;
  border: 1px solid #bae6fd;
}

.hero-badge-icon {
  color: #0284c7;
  flex-shrink: 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.12;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-title span.blue-highlight {
  color: #0284c7;
  display: block;
}

.hero-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 28px;
  max-width: 510px;
}

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

/* Hero Trust Metrics Row (3 Items in 1 Row) */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 24px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.08);
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 2px;
}

/* Bottom Left Handwritten Quote & Signature */
.hero-bottom-left-quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 4px;
}

.hero-quote-text {
  font-family: var(--font-handwritten);
  font-size: 1.65rem;
  color: #0284c7;
  font-weight: 700;
  transform: rotate(-3deg);
  line-height: 1.1;
  margin-bottom: 2px;
}

.hero-quote-signature {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  color: #0369a1;
  font-weight: 600;
  padding-left: 24px;
  transform: rotate(-2deg);
}

/* --- Hero Right Column (Interactive Floating Overlays on Doctor Background) --- */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Floating Center-Left Pill Badge */
.hero-floating-badge-pill {
  position: absolute;
  left: -15px;
  top: 46%;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 9999px;
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 32px -4px rgba(2, 132, 199, 0.22);
  border: 1.5px solid #e0f2fe;
  z-index: 3;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.badge-tooth-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f9ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text-stack {
  display: flex;
  flex-direction: column;
}

.badge-bold {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0284c7;
  line-height: 1.1;
}

.badge-sub {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.badge-heart {
  font-size: 1.1rem;
  color: #0284c7;
  margin-left: 2px;
}

/* Floating Top-Right Before-After Case Card */
.hero-floating-case-card {
  position: absolute;
  right: 15px;
  top: 25px;
  width: 225px;
  background: #ffffff;
  border-radius: 20px;
  padding: 10px 12px;
  box-shadow: 0 18px 38px -6px rgba(2, 132, 199, 0.22);
  border: 1.5px solid #e0f2fe;
  z-index: 4;
  animation: floatMedium 5s ease-in-out infinite alternate;
}

.case-card-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 75px;
  margin-bottom: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.case-img-box {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.case-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.case-tag {
  position: absolute;
  bottom: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.case-before .case-tag {
  left: 4px;
}

.case-after .case-tag {
  right: 4px;
}

.case-split-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.case-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.case-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.2;
}

.case-card-desc {
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.22;
  margin: 0;
}

.case-card-arrow-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.case-card-arrow-btn:hover {
  background: #0284c7;
  color: #ffffff;
  transform: scale(1.1);
}

/* Bottom Right Handwritten Script */
.hero-bottom-right-script {
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-family: var(--font-handwritten);
  font-size: 1.5rem;
  color: #0284c7;
  font-weight: 700;
  transform: rotate(-4deg);
  text-align: right;
  line-height: 1.1;
  pointer-events: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* --- Hero Bottom Floating Bar (4 Pillars + Right CTA Button) --- */
.hero-bottom-bar {
  margin-top: 48px;
  background: #ffffff;
  border-radius: 28px;
  padding: 18px 24px;
  box-shadow: 0 16px 40px -8px rgba(2, 132, 199, 0.12);
  border: 1.5px solid #e0f2fe;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 5;
}

.hero-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.hero-bar-item:not(:nth-child(4))::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e2e8f0;
}

.bar-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bar-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.2;
}

.bar-desc {
  font-size: 0.74rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}

.hero-bottom-cta-btn {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-bottom-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(2, 132, 199, 0.5);
  filter: brightness(1.05);
}

.cta-cal-icon {
  flex-shrink: 0;
}

.cta-btn-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}

.cta-arrow-icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.hero-bottom-cta-btn:hover .cta-arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   ABOUT SECTION ("TENTANG SAYA" - MOCKUP STYLE)
   ========================================================================== */
.about-mockup-section {
  position: relative;
  background: #ffffff;
  padding: 80px 0 70px;
  overflow: hidden;
}

/* Background soft blue radial glow */
.about-mockup-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.about-mockup-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Top Right Handwritten Script & Watermark Aligner in Mockup */
.about-top-right-decor {
  position: absolute;
  top: 15px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  z-index: 2;
}

.about-top-right-quote {
  font-family: var(--font-handwritten);
  font-size: 1.55rem;
  font-weight: 700;
  color: #0284c7;
  line-height: 1.1;
  text-align: right;
  transform: rotate(2deg);
  margin-bottom: 4px;
}

.about-top-right-aligner {
  width: 140px;
  height: auto;
  opacity: 0.35;
  filter: drop-shadow(0 4px 8px rgba(2, 132, 199, 0.15));
}

/* Grid Layout: Left Visual (0.95fr) and Right Content (1.05fr) */
.about-mockup-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* Left Visual Column - Tilted Aesthetic Card Frame */
.about-mockup-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px 10px 0 10px;
}

.about-mockup-img-container {
  position: relative;
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 24px 50px -10px rgba(2, 132, 199, 0.22), 0 12px 24px -6px rgba(15, 23, 42, 0.08);
  border: 2.5px solid #bae6fd;
  transform: rotate(2.8deg);
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.about-mockup-img-container:hover {
  transform: rotate(1.2deg) scale(1.015);
  box-shadow: 0 30px 60px -10px rgba(2, 132, 199, 0.28);
}

.about-mockup-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/4.3;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

/* Floating Top-Left Badge on Photo: Tooth icon + Spesialis Ortodonti (Sp.Ort) */
.about-floating-specialist-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(186, 230, 253, 0.9);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.15);
  z-index: 2;
}

.about-specialist-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-specialist-badge-text {
  display: flex;
  flex-direction: column;
}

.about-specialist-badge-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0284c7;
  line-height: 1.2;
}

.about-specialist-badge-sub {
  font-size: 0.74rem;
  font-weight: 700;
  color: #0284c7;
}

/* Bottom-Left Overlapping Quote Card */
.about-mockup-quote-card {
  position: absolute;
  bottom: -22px;
  left: -20px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 24px;
  max-width: 280px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
  border: 1.5px solid #bae6fd;
  z-index: 4;
  transform: rotate(-1.8deg);
  transition: transform 0.3s ease;
}

.about-mockup-img-container:hover .about-mockup-quote-card {
  transform: rotate(-0.5deg) translateY(-2px);
}

.about-quote-mark {
  font-size: 2.2rem;
  line-height: 0.8;
  color: #0284c7;
  font-family: Georgia, serif;
  font-weight: 900;
  margin-bottom: 6px;
  display: block;
}

.about-quote-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.48;
  margin-bottom: 8px;
}

.about-quote-signature {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  color: #0284c7;
  font-weight: 700;
  display: block;
  line-height: 1;
}

/* Bottom-Right Handwritten Script below Left container */
.about-bottom-left-script {
  margin-top: 20px;
  align-self: flex-end;
  text-align: right;
  padding-right: 16px;
}

.about-bottom-left-text {
  font-family: var(--font-handwritten);
  font-size: 1.5rem;
  color: #0284c7;
  font-weight: 700;
  line-height: 1.15;
  transform: rotate(-3deg);
  display: inline-block;
  position: relative;
}

.about-bottom-left-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10%;
  right: 15%;
  height: 2px;
  background: #0284c7;
  border-radius: 9999px;
  transform: rotate(-1deg);
}

/* Right Column Content */
.about-mockup-content {
  display: flex;
  flex-direction: column;
}

.about-mockup-tag {
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 9999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 12px;
}

.about-mockup-heading {
  font-size: 2.35rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 6px;
}

.about-mockup-heading .text-blue-accent {
  color: #0284c7;
}

.about-mockup-subheading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 16px;
}

.about-mockup-bio-p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 12px;
}

/* 3 Stat Cards in 1 Row */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0 24px;
}

.about-stat-box {
  background: #ffffff;
  border: 1.5px solid #e0f2fe;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-stat-box:hover {
  transform: translateY(-2px);
  border-color: #7dd3fc;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.1);
}

.about-stat-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-stat-meta {
  display: flex;
  flex-direction: column;
}

.about-stat-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.about-stat-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.25;
  margin-top: 2px;
}

/* Keunggulan Perawatan Section */
.about-advantages-heading {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

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

.about-advantage-col {
  display: flex;
  flex-direction: column;
}

.about-advantage-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.about-advantage-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-advantage-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.about-advantage-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* Bottom CTA Banner */
.about-bottom-cta-banner {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border: 1.5px solid #bae6fd;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-banner-calendar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.28);
}

.about-banner-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 2px;
}

.about-banner-sub {
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.35;
}

.about-header-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.about-cv-header-btn {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.08);
}

.about-cv-header-btn:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.about-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 8px;
}

.btn-about-booking {
  background: #0284c7;
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.32);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-about-booking:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.42);
}

.about-banner-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0284c7;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
  background: none;
  border: none;
  padding: 2px 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-banner-link:hover {
  color: #0369a1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   SERVICES SECTION ("LAYANAN PERAWATAN" - MOCKUP STYLE)
   ========================================================================== */
.services-mockup-section {
  position: relative;
  background: #ffffff;
  padding: 90px 0 80px;
  overflow: hidden;
}

.services-mockup-section .section-header {
  text-align: left;
  margin: 0 0 28px 0;
  max-width: 720px;
}

.services-mockup-section .section-subtitle {
  margin-left: 0;
  margin-right: 0;
}

/* 4 Trust Feature Pills Under Header */
.service-trust-pills-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate-700);
}

.service-trust-pill svg {
  color: var(--primary-600);
}

/* Top Right Smile Badge */
.services-top-right-decor {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.services-handwritten-quote {
  font-family: var(--font-handwritten);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.15;
  text-align: right;
  transform: rotate(-4deg);
}

.services-smile-badge-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  border: 2px solid var(--white);
}

.services-smile-badge-circle svg {
  margin-top: 2px;
}

.services-tooth-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.18);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatSlow 4s ease-in-out infinite;
}

.services-tooth-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* 2-Column Mockup Services Grid */
.services-mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-mockup-card {
  background: var(--white);
  border-radius: 26px;
  border: 1.5px solid var(--primary-100);
  box-shadow: 0 10px 28px -6px rgba(2, 132, 199, 0.08), 0 2px 6px rgba(15, 23, 42, 0.03);
  padding: 16px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  align-items: stretch;
  position: relative;
  transition: all var(--transition-normal);
}

.service-mockup-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-300);
  box-shadow: 0 18px 36px -8px rgba(2, 132, 199, 0.18);
}

/* Card Left: Image Container */
.service-mockup-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(186, 230, 253, 0.6);
  position: relative;
}

.service-mockup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-mockup-card:hover .service-mockup-img-wrap img {
  transform: scale(1.05);
}

/* Card 01 Sticker / Tag */
.service-popular-sticker {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-100);
  font-family: var(--font-handwritten);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-700);
  transform: rotate(-5deg);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Card Right: Content Body */
.service-mockup-content {
  display: flex;
  flex-direction: column;
  padding: 4px 6px 4px 0;
  position: relative;
}

.service-number-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.service-mockup-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: 2px;
  padding-right: 36px;
}

.service-mockup-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 8px;
}

.service-mockup-desc {
  font-size: 0.8rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Checklist 3 items */
.service-mockup-checklist {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-mockup-checklist li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--slate-700);
  font-weight: 600;
}

.service-mockup-checklist li svg {
  color: var(--primary-600);
  flex-shrink: 0;
}

/* Card Consultation Pill Button */
.btn-mockup-service-consult {
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.28);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-mockup-service-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.38);
  filter: brightness(1.05);
}

.btn-mockup-service-consult .arrow-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.btn-mockup-service-consult:hover .arrow-circle {
  transform: translateX(2px);
}

/* Bottom Consultation Mini Banner */
.services-bottom-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 20px 32px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 16px 36px -6px rgba(2, 132, 199, 0.35);
  position: relative;
  overflow: hidden;
}

.services-bottom-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.services-bottom-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.services-bottom-banner-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.services-bottom-banner-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  margin-top: 2px;
}

.services-bottom-banner .btn-white {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.service-duration-badge {
  font-size: 0.74rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-card .btn-consult {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.service-card .btn-consult:hover {
  color: var(--primary-800);
  transform: translateX(4px);
}

/* ==========================================================================
   SERTIFIKASI & KREDENSIAL (MOCKUP CERTIFICATES SECTION)
   ========================================================================== */
.credentials-section {
  position: relative;
  background: linear-gradient(180deg, #f8fcff 0%, #f0f8ff 50%, #ffffff 100%);
  overflow: hidden;
  padding: 100px 0 80px;
}

/* Ambient glow in background */
.cert-glow-left {
  position: absolute;
  top: 15%;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.cert-glow-right {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Floating Handwritten Accent - Top Left */
.cert-handwritten-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  pointer-events: none;
}

.cert-handwritten-text {
  font-family: var(--font-handwritten);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.15;
  transform: rotate(-8deg);
  text-shadow: 0 2px 4px rgba(2, 132, 199, 0.1);
}

.cert-handwritten-arrow {
  margin-left: 55px;
  margin-top: 2px;
  color: var(--primary-500);
  transform: rotate(-10deg);
}

/* Floating Tooth Ribbon Graphic - Top Right */
.cert-quote-visual-badge {
  position: absolute;
  top: 0px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.cert-floating-quote {
  font-family: var(--font-handwritten);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-500);
  text-align: right;
  line-height: 1.2;
}

.cert-tooth-ribbon-wrap {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px;
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.18);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatSlow 4s ease-in-out infinite;
}

.cert-tooth-ribbon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Section Header Underline Accent */
.title-accent-bar {
  width: 46px;
  height: 4px;
  background: var(--primary-500);
  border-radius: var(--radius-full);
  margin: 14px auto 0;
}

/* 4 Certificate Cards Grid */
.credentials-mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.cert-mockup-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 20px 18px 22px;
  border: 1.5px solid var(--primary-100);
  box-shadow: 0 10px 28px -6px rgba(2, 132, 199, 0.08), 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.cert-mockup-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-300);
  box-shadow: 0 18px 36px -8px rgba(2, 132, 199, 0.18);
}

/* Certificate Preview Image Box */
.cert-preview-box {
  width: 100%;
  aspect-ratio: 1.45/1;
  background: #f8fafc;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  position: relative;
  margin-bottom: 22px;
}

.cert-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.cert-mockup-card:hover .cert-preview-box img {
  transform: scale(1.04);
}

/* Floating Round Icon Badge on Certificate Preview */
.cert-corner-icon-badge {
  position: absolute;
  bottom: -16px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  border: 2.5px solid var(--white);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* Certificate Card Body */
.cert-mockup-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  padding-top: 4px;
}

.cert-mockup-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cert-mockup-issuer {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 12px;
}

.cert-mockup-desc {
  font-size: 0.78rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* "Lihat Sertifikat ->" Button */
.btn-view-cert {
  background: var(--primary-50);
  color: var(--primary-700);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.btn-view-cert:hover {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.28);
  transform: translateY(-2px);
}

.btn-view-cert svg {
  transition: transform var(--transition-fast);
}

.btn-view-cert:hover svg {
  transform: translateX(4px);
}

/* Bottom Tagline / Divider */
.cert-bottom-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
  position: relative;
  z-index: 2;
}

.cert-divider-line {
  height: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent, #94a3b8, transparent);
}

.cert-divider-text {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-500);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   HASIL PASIEN KAMI (BEFORE & AFTER / REAL RESULTS - MOCKUP STYLE)
   ========================================================================== */
.results-mockup-section {
  position: relative;
  background: linear-gradient(180deg, #f8fcff 0%, #f0f7fe 50%, #ffffff 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Top Right Handwritten Decor */
.results-top-right-decor {
  position: absolute;
  top: 30px;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.results-handwritten-quote {
  font-family: var(--font-handwritten);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.15;
  text-align: right;
  transform: rotate(-3deg);
  text-shadow: 0 2px 4px rgba(2, 132, 199, 0.08);
}

.results-main-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.results-main-header .blue-highlight {
  color: var(--primary-600);
}

/* Interactive Before-After Slider Showcase */
.interactive-case-showcase {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(2, 132, 199, 0.08), 0 2px 6px rgba(15, 23, 42, 0.02);
  border: 1.5px solid var(--primary-100);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 32px;
  align-items: center;
  position: relative;
}

.before-after-slider-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5/1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  border: 2px solid var(--white);
  user-select: none;
  background: #f1f5f9;
}

.ba-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  border: 2.5px solid var(--white);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

/* Slider Bottom Corner Badges */
.ba-tag-badge {
  position: absolute;
  bottom: 14px;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  z-index: 4;
}

.ba-tag-before {
  left: 14px;
}

.ba-tag-after {
  right: 14px;
}

.ba-tag-label {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.15;
}

.ba-tag-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.2;
}

/* Showcase Info Box */
.showcase-info-box {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Floating Mascot Decor in Corner */
.showcase-tooth-mascot-wrap {
  position: absolute;
  top: -12px;
  right: -6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}

.showcase-tooth-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatSlow 3.5s ease-in-out infinite;
}

.showcase-tooth-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(2, 132, 199, 0.18));
}

.showcase-mascot-script {
  font-family: var(--font-handwritten);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.1;
  margin-top: 2px;
  transform: rotate(-3deg);
}

.case-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  max-width: calc(100% - 100px);
}

.case-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary-700);
  font-size: 0.76rem;
  font-weight: 700;
}

.case-meta-pill svg {
  color: var(--primary-600);
}

.showcase-case-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: 10px;
  max-width: 82%;
}

.showcase-case-desc {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.showcase-result-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f0f9ff;
  border-left: 3.5px solid var(--primary-600);
  border-radius: 0 12px 12px 0;
  padding: 12px 16px;
  margin-bottom: 22px;
}

.callout-quote-icon {
  font-family: serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary-600);
  font-weight: 800;
}

.callout-text {
  font-size: 0.84rem;
  color: var(--slate-800);
  line-height: 1.45;
}

.callout-text strong {
  color: var(--primary-700);
}

.showcase-actions-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.showcase-actions-row .btn-primary {
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
}

.btn-video-journey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-600);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-video-journey:hover {
  color: var(--primary-800);
  transform: translateX(3px);
}

.video-play-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-video-journey:hover .video-play-icon {
  background: var(--primary-600);
  color: var(--white);
}

/* Category Filter Tabs */
.results-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--slate-600);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--primary-700);
  border-color: var(--primary-300);
  background: var(--primary-50);
}

.filter-btn.active {
  color: var(--white);
  background: var(--primary-600);
  border-color: var(--primary-600);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

/* 3 Real Results Cards Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}

.result-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--slate-200);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-300);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.12);
}

.result-card-img-wrap {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.result-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.result-card:hover .result-card-img-wrap img {
  transform: scale(1.03);
}

/* Card Image Corner Tags */
.card-img-tag {
  position: absolute;
  bottom: 10px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(4px);
  color: var(--white);
  z-index: 2;
}

.card-img-tag.tag-before {
  left: 10px;
}

.card-img-tag.tag-after {
  right: 10px;
}

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

.result-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.result-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.result-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-700);
}

.result-meta-item svg {
  color: var(--primary-500);
}

.result-card-desc {
  font-size: 0.84rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-detail-case {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary-700);
  border: 1.5px solid var(--primary-200);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
  margin-top: auto;
}

.btn-detail-case:hover {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transform: translateY(-2px);
}

.btn-detail-case svg {
  transition: transform var(--transition-fast);
}

.btn-detail-case:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   EMPTY / COMING SOON STATE FOR RESULTS & FILTERS
   ========================================================================== */
.results-empty-state {
  width: 100%;
  margin: 10px 0 36px;
  animation: fadeIn 0.4s ease;
}

.empty-state-card {
  background: #ffffff;
  border-radius: 28px;
  border: 2px dashed #bae6fd;
  padding: 46px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.05);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.empty-mascot-wrap {
  position: relative;
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
}

.empty-mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(2, 132, 199, 0.2));
  animation: floatSlow 3s ease-in-out infinite alternate;
}

.empty-sparkle-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.35);
  border: 1.5px solid #ffffff;
}

.empty-text-wrap {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 10px;
  line-height: 1.3;
}

.empty-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.empty-desc strong.empty-category-name {
  color: #0284c7;
  font-weight: 800;
}

.empty-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  .empty-state-card {
    padding: 32px 18px;
  }
  .empty-title {
    font-size: 1.15rem;
  }
  .empty-desc {
    font-size: 0.85rem;
  }
  .empty-actions {
    flex-direction: column;
    width: 100%;
  }
  .empty-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Bottom Trust / Stats Bar (4 Columns) */
.results-bottom-trust-bar {
  background: var(--white);
  border: 1.5px solid var(--primary-100);
  border-radius: 24px;
  padding: 22px 32px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.trust-stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-stat-info {
  display: flex;
  flex-direction: column;
}

.trust-stat-number {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}

.trust-stat-label {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 600;
  line-height: 1.3;
}

/* ==========================================================================
   JADWAL & LOKASI PRAKTIK (MOCKUP STYLE)
   ========================================================================== */
.schedules-mockup-section {
  position: relative;
  background: #f8fbfe;
  padding: 90px 0;
  overflow: hidden;
}

.schedules-top-right-decor {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.schedules-handwritten-quote {
  font-family: var(--font-handwritten);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.15;
  text-align: right;
  transform: rotate(-3deg);
}

.schedules-tooth-wrap {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.18);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatSlow 4s ease-in-out infinite;
}

.schedules-tooth-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.schedules-header {
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}

/* 4 Practice Pillars Horizontal Bar (Single Row on Desktop) */
.schedules-pillars-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  max-width: 1150px;
  margin: 0 auto 36px;
  width: 100%;
}

.schedules-pillar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-100);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.05);
  white-space: nowrap;
  flex-shrink: 0;
}

.schedules-pillar-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.schedules-pillar-text {
  font-size: 0.76rem;
  color: var(--slate-600);
  line-height: 1.25;
  text-align: left;
}

.schedules-pillar-text strong {
  color: var(--slate-900);
  font-weight: 700;
  font-size: 0.78rem;
}

/* 3 Clinic Cards + 1 Sidebar Grid Layout */
.schedules-mockup-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 280px;
  gap: 20px;
  align-items: stretch;
  margin-top: 36px;
  margin-bottom: 36px;
}

.schedule-mockup-card {
  background: var(--white);
  border-radius: 24px;
  border: 1.5px solid var(--slate-200);
  box-shadow: 0 8px 24px -4px rgba(2, 132, 199, 0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.schedule-mockup-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-300);
  box-shadow: 0 16px 36px -6px rgba(2, 132, 199, 0.16);
}

.schedule-mockup-card.featured-highlight {
  border: 2px solid var(--primary-400);
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 12px 32px -4px rgba(2, 132, 199, 0.18);
}

/* Clinic Image Wrap & Overlay Badges */
.schedule-mockup-img-wrap {
  position: relative;
  width: 100%;
  height: 175px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #e2e8f0;
}

.schedule-mockup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.schedule-mockup-card:hover .schedule-mockup-img-wrap img {
  transform: scale(1.05);
}

.schedule-top-badge {
  position: absolute;
  top: 10px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.schedule-top-badge.badge-schedule {
  left: 10px;
  background: rgba(224, 242, 254, 0.95);
  color: var(--primary-700);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.schedule-top-badge.badge-open {
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #059669;
  border: 1px solid #a7f3d0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  animation: pulseDot 1.5s infinite;
}

.schedule-top-badge.badge-dept {
  right: 10px;
  background: rgba(15, 23, 42, 0.65);
  color: var(--white);
}

/* Card Body */
.schedule-mockup-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.schedule-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.schedule-card-sub {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: 12px;
}

.schedule-card-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.35;
  margin-bottom: 14px;
}

.schedule-card-address svg {
  color: var(--primary-600);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Time Chips */
.schedule-time-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.schedule-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  padding: 4px 10px;
  border-radius: var(--radius-md);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary-800);
}

.schedule-chip svg {
  color: var(--primary-600);
}

/* Facilities & Mini Room Thumbnail Split */
.schedule-facilities-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
  margin-top: auto;
}

.schedule-features-checklist {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.schedule-features-checklist li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-700);
}

.schedule-features-checklist li svg {
  color: var(--primary-600);
  flex-shrink: 0;
}

.schedule-facility-thumb {
  width: 72px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

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

/* Card Action Buttons */
.schedule-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-schedule-book {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.28);
  transition: all var(--transition-fast);
}

.btn-schedule-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.38);
  filter: brightness(1.05);
}

.btn-schedule-maps {
  background: var(--white);
  color: var(--primary-700);
  border: 1.5px solid var(--primary-200);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.btn-schedule-maps:hover {
  background: var(--primary-50);
  border-color: var(--primary-400);
  transform: translateY(-2px);
}

/* Right Sidebar: Butuh Jadwal Lain? (100% Mockup Aesthetic) */
.schedule-sidebar-card {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border-radius: 24px;
  border: 1.5px solid var(--primary-100);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px -4px rgba(2, 132, 199, 0.08);
  position: relative;
  overflow: hidden;
}

.schedule-sidebar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e0f2fe;
  border: 2px solid #bae6fd;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}

.schedule-sidebar-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.22;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.schedule-sidebar-desc {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-schedule-wa {
  background: var(--white);
  border: 1.5px solid #bae6fd;
  border-radius: var(--radius-full);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
  transition: all var(--transition-fast);
  margin-bottom: 24px;
  text-decoration: none;
}

.btn-schedule-wa:hover {
  border-color: var(--primary-400);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.18);
  transform: translateY(-2px);
}

.wa-btn-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-btn-left .wa-icon {
  color: #22c55e;
  flex-shrink: 0;
}

.wa-btn-left .wa-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-700);
}

.wa-arrow {
  color: var(--primary-600);
  transition: transform var(--transition-fast);
}

.btn-schedule-wa:hover .wa-arrow {
  transform: translateX(3px);
}

.schedule-sidebar-quote-box {
  margin-top: auto;
  border-top: 1.5px solid rgba(186, 230, 253, 0.6);
  padding-top: 20px;
}

.schedule-sidebar-quote-box p {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 14px;
}

.schedule-sidebar-quote-box .doctor-signature-text {
  font-family: var(--font-handwritten);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary-600);
  text-align: right;
  transform: rotate(-2deg);
}

/* Bottom Consultation Pill Banner + Desk Calendar */
.schedules-bottom-container {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.schedules-bottom-pill-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 24px 32px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 16px 36px -6px rgba(2, 132, 199, 0.35);
}

.schedules-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.schedules-bottom-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.schedules-bottom-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 4px;
}

.schedules-bottom-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.btn-schedules-banner-cta {
  background: var(--white);
  color: var(--primary-700);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-schedules-banner-cta:hover {
  background: var(--primary-50);
  color: var(--primary-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.schedules-calendar-widget {
  height: 100%;
  max-height: 140px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.15);
  border: 2px solid var(--white);
}

.schedules-calendar-widget img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   CUSTOMER SAY (TESTIMONIALS SECTION - MOCKUP STYLE)
   ========================================================================== */
.testimonials-mockup-section {
  position: relative;
  padding: 100px 0 90px;
  background: #ffffff;
  overflow: hidden;
}

/* Background Soft Ambient Light Blobs */
.testimonials-mockup-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.42) 0%, rgba(240, 249, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.testimonials-mockup-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.48) 0%, rgba(240, 249, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Top Left Handwritten Decor */
.testi-top-left-decor {
  position: absolute;
  top: 36px;
  left: max(24px, calc(50% - 640px));
  pointer-events: none;
  z-index: 3;
}

.testi-handwritten-quote {
  font-family: var(--font-handwritten);
  font-size: 1.7rem;
  font-weight: 700;
  color: #0284c7;
  line-height: 1.15;
  transform: rotate(-7deg);
  text-align: left;
}

.testi-handwritten-underline {
  margin-top: -2px;
}

/* Top Right Speech Bubble + Cute Tooth Mascot */
.testi-top-right-decor {
  position: absolute;
  top: 24px;
  right: max(24px, calc(50% - 640px));
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  z-index: 3;
}

.testi-speech-bubble {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.08);
  border: 1.5px solid #e0f2fe;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  max-width: 175px;
}

.speech-quote-mark {
  font-size: 1.6rem;
  color: #38bdf8;
  line-height: 1;
  font-family: serif;
}

.speech-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.speech-sub {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

.speech-highlight {
  font-size: 0.95rem;
  color: #0284c7;
  font-weight: 800;
}

.testi-mascot-balloon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.testi-mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(2, 132, 199, 0.16));
  animation: floatSlow 3.5s ease-in-out infinite;
}

.testi-heart-balloon {
  position: absolute;
  top: -12px;
  right: -4px;
  filter: drop-shadow(0 3px 6px rgba(2, 132, 199, 0.3));
  animation: pulse 2.5s infinite;
}

/* Testimonials Carousel Wrap */
.testi-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testi-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #bae6fd;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.12);
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  z-index: 4;
}

.testi-carousel-btn:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.28);
}

/* Testimonials Carousel Viewport & Slider Track */
.testi-slider-viewport {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  width: 100%;
  padding: 18px 8px 26px 8px;
  margin: -18px -8px -26px -8px;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}

.testi-slider-viewport:active {
  cursor: grabbing;
}

.testi-slider-track {
  display: flex;
  gap: 24px;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}

.testi-mockup-card {
  flex: 0 0 calc((100% - (2 * 24px)) / 3);
  min-width: calc((100% - (2 * 24px)) / 3);
  max-width: calc((100% - (2 * 24px)) / 3);
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 24px;
  border: 1.5px solid #e2e8f0;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  user-select: none;
}

.testi-mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
  border-color: #bae6fd;
}

/* Active Highlighted Card */
.testi-mockup-card.card-featured-active {
  border: 2px solid #38bdf8;
  box-shadow: 0 12px 36px rgba(2, 132, 199, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  transform: translateY(-3px);
}

/* Top Left Sticker Badge */
.testi-sticker-badge {
  position: absolute;
  top: 10px;
  left: 14px;
  z-index: 4;
  font-family: var(--font-handwritten);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0284c7;
  line-height: 1.05;
  transform: rotate(-6deg);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95), 0 0 10px #ffffff;
  pointer-events: none;
}

/* Teeth Before/After Compare Box */
.testi-teeth-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background: #f1f5f9;
  aspect-ratio: 2.1/1;
}

.testi-teeth-side {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.testi-teeth-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.4s ease;
}

.testi-mockup-card:hover .testi-teeth-img {
  transform: scale(1.05);
}

.teeth-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  z-index: 2;
}

.badge-sebelum {
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.badge-sesudah {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.4);
}

/* Rating & Watermark Quote Row */
.testi-card-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 1.15rem;
  line-height: 1;
}

.testi-quote-watermark {
  font-size: 2.4rem;
  color: #bae6fd;
  font-family: serif;
  line-height: 0.7;
  user-select: none;
}

/* Quote Review Text */
.testi-card-quote {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: normal;
}

/* Patient Profile Row */
.testi-profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.testi-profile-row.with-treatment-pill {
  justify-content: space-between;
}

.testi-profile-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0f2fe;
  flex-shrink: 0;
}

.testi-profile-info {
  display: flex;
  flex-direction: column;
}

.testi-patient-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2px;
}

.testi-patient-tag {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 500;
}

.testi-treatment-pill-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 5px 12px;
  flex-shrink: 0;
}

.pill-aligner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.pill-sub {
  font-size: 0.65rem;
  color: #0284c7;
  font-weight: 600;
}

.pill-main {
  font-size: 0.78rem;
  color: #0369a1;
  font-weight: 800;
}

/* Pagination Dots */
.testi-dots-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.25s ease;
  cursor: pointer;
}

.testi-dot.active {
  width: 24px;
  border-radius: 9999px;
  background: #0284c7;
}

/* 4 Stats Bar (Floating White Pill) */
.testi-stats-floating-bar {
  background: #ffffff;
  border: 1.5px solid #e0f2fe;
  border-radius: 9999px;
  padding: 18px 36px;
  box-shadow: 0 8px 28px rgba(2, 132, 199, 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}

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

.stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-text-group {
  display: flex;
  flex-direction: column;
}

.stat-main-number {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.stat-sub-label {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.25;
}

/* Bottom CTA Banner */
.testi-bottom-cta-banner {
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
  border-radius: 9999px;
  padding: 16px 36px;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.cta-banner-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.cta-banner-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 3px;
}

.cta-banner-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.cta-banner-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-booking-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0284c7;
  padding: 11px 24px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  text-decoration: none;
}

.btn-booking-white:hover {
  background: #f0f9ff;
  transform: translateX(3px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
  color: #0369a1;
}

.cta-handwritten-slogan {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-2deg);
  text-shadow: 0 1px 3px rgba(2, 132, 199, 0.4);
}

/* Responsive Styles for Testimonials */
@media (max-width: 1024px) {
  .testi-slider-track {
    gap: 20px;
  }
  .testi-mockup-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
  .testi-stats-floating-bar {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
    padding: 20px;
  }
  .testi-bottom-cta-banner {
    border-radius: 24px;
    padding: 24px;
    flex-wrap: wrap;
  }
  .testi-top-left-decor,
  .testi-top-right-decor {
    display: none;
  }
}

@media (max-width: 680px) {
  .testi-slider-track {
    gap: 16px;
  }
  .testi-mockup-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 16px;
  }
  .testi-carousel-btn {
    width: 36px;
    height: 36px;
  }
  .testi-stats-floating-bar {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 16px;
    gap: 16px;
  }
  .testi-bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 20px 16px;
  }
  .cta-banner-left {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-right {
    flex-direction: column;
    width: 100%;
  }
  .btn-booking-white {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ARTIKEL & EDUKASI GIGI SECTION (MOCKUP STYLE)
   ========================================================================== */
.articles-mockup-section {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background: #f8fafc;
}

/* Background Soft Ambient Light Blobs */
.articles-mockup-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.45) 0%, rgba(240, 249, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.articles-mockup-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.5) 0%, rgba(240, 249, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Top Right Handwritten Decor */
.articles-top-right-decor {
  position: absolute;
  top: 36px;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.articles-handwritten-quote {
  font-family: var(--font-handwritten);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.15;
  text-align: right;
  transform: rotate(-3deg);
  text-shadow: 0 2px 4px rgba(2, 132, 199, 0.08);
}

.articles-handwritten-underline {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
  color: var(--primary-500);
}

.articles-main-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.articles-main-header .blue-highlight {
  color: var(--primary-600);
}

/* Category Filter Tabs / Pills */
.articles-category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.article-filter-btn {
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.article-filter-btn:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.article-filter-btn.active {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.32);
}

/* Articles Showcase Grid */
.articles-mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  transition: opacity 0.25s ease;
}

/* Featured card default spans full width in multi-item lists */
.article-card-featured {
  grid-column: 1 / -1;
  background: var(--white);
  border-radius: 26px;
  border: 1.5px solid #e0f2fe;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.06), 0 2px 8px rgba(15, 23, 42, 0.03);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

/* When exactly 3 items: Match mockup layout (Featured left 1.85fr + 2 Standard cards 1fr each) */
.articles-mockup-grid.three-items {
  grid-template-columns: 1.85fr 1fr 1fr;
}
.articles-mockup-grid.three-items .article-card-featured {
  grid-column: auto;
}

/* When 2 items: 1.55fr + 1fr */
.articles-mockup-grid.two-items {
  grid-template-columns: 1.55fr 1fr;
}
.articles-mockup-grid.two-items .article-card-featured {
  grid-column: auto;
}

/* When 1 item: 1fr */
.articles-mockup-grid.single-item {
  grid-template-columns: 1fr;
}
.articles-mockup-grid.single-item .article-card-featured {
  grid-column: auto;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 380px;
}

/* Common Pill Badge */
.article-pill-tag {
  background: #e0f2fe;
  color: var(--primary-700);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
}

.article-pill-tag.tag-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

/* Common Meta Row */
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  color: var(--slate-400);
  margin-top: auto;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 1. FEATURED ARTICLE CARD (LEFT WIDE) */
.article-card-featured {
  background: var(--white);
  border-radius: 26px;
  border: 1.5px solid #e0f2fe;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.06), 0 2px 8px rgba(15, 23, 42, 0.03);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.article-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.12);
  border-color: #bae6fd;
}

.featured-card-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-article-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.32;
  margin-bottom: 12px;
}

.featured-article-excerpt {
  font-size: 0.84rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 22px;
}

.featured-cta-wrap {
  margin-bottom: 14px;
}

.btn-featured-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-600);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
  cursor: pointer;
}

.btn-featured-read:hover {
  background: var(--primary-700);
  transform: translateX(3px);
  color: var(--white);
}

.featured-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: #f1f5f9;
}

.featured-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}

/* Handwritten Annotation over Image */
.featured-media-annotation {
  position: absolute;
  top: 14%;
  right: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

.featured-media-annotation .annotation-text {
  font-family: var(--font-handwritten);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  text-align: right;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0,0,0,0.85);
  transform: rotate(-6deg);
}

.featured-media-annotation .annotation-arrow {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
  margin-top: 2px;
  margin-right: 20px;
}

/* 3 Mini Comparison Thumbnails */
.featured-braces-types {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  z-index: 3;
}

.braces-thumb-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background: var(--white);
}

.braces-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.82);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  text-align: center;
  padding: 3px 0;
  backdrop-filter: blur(4px);
}

/* 2. STANDARD ARTICLE CARDS (MIDDLE & RIGHT) */
.article-card-standard {
  background: var(--white);
  border-radius: 24px;
  border: 1.5px solid #e0f2fe;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.05), 0 2px 6px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.article-card-standard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
  border-color: #bae6fd;
}

.standard-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f1f5f9;
}

.standard-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-card-standard:hover .standard-main-img {
  transform: scale(1.05);
}

/* Media Before/After Compare Indicator on Card 1 */
.media-compare-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 2;
}

.media-sub-badge {
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

.compare-arrow-icon {
  background: var(--primary-600);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  border: 1.5px solid var(--white);
}

/* Floating Circular Bracket Badge on Card 2 */
.floating-bracket-circle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
  overflow: visible;
  z-index: 3;
  background: var(--white);
}

.floating-bracket-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.bracket-spark-icon {
  position: absolute;
  top: -12px;
  right: -8px;
}

.standard-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.standard-article-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.article-card-standard:hover .standard-article-title {
  color: var(--primary-600);
}

.standard-article-excerpt {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.52;
  margin-bottom: 18px;
  flex-grow: 1;
}

.standard-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-600);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
  cursor: pointer;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.standard-read-link:hover {
  color: var(--primary-800);
  gap: 10px;
}

/* Articles Load More / Read More Button */
.articles-load-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 0 44px;
  position: relative;
  z-index: 2;
}

.btn-articles-load-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.8px solid #bae6fd;
  color: var(--primary-700);
  padding: 12px 28px;
  border-radius: 9999px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.08);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.btn-articles-load-more:hover {
  background: #f0f9ff;
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.16);
}

.btn-articles-load-more:active {
  transform: translateY(0);
}

.btn-articles-load-more .load-more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.btn-articles-load-more:hover .load-more-icon {
  transform: translateY(2px);
  background: #0284c7;
  color: #ffffff;
}

.articles-count-badge {
  background: #e0f2fe;
  color: var(--primary-700);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid #bae6fd;
  letter-spacing: 0.2px;
}

/* 3. BOTTOM CONSULTATION BANNER (CTA CARD) */
.article-consult-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 1.5px solid #bae6fd;
  border-radius: 24px;
  padding: 24px 36px;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.consult-banner-mascot {
  flex-shrink: 0;
}

.banner-mascot-img {
  width: 90px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(2, 132, 199, 0.15));
}

.consult-banner-text {
  flex-grow: 1;
}

.consult-subtag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-600);
  display: block;
  margin-bottom: 4px;
}

.consult-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 4px;
}

.consult-heading .blue-highlight {
  color: var(--primary-600);
}

.consult-desc {
  font-size: 0.86rem;
  color: var(--slate-600);
  line-height: 1.4;
  margin: 0;
}

.consult-banner-action {
  flex-shrink: 0;
}

.consult-banner-quote {
  flex-shrink: 0;
  font-family: var(--font-handwritten);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.15;
  text-align: center;
  transform: rotate(-2deg);
  border-left: 1.5px dashed #cbd5e1;
  padding-left: 20px;
}

/* Responsive Media Queries for Articles Section */
@media (max-width: 1024px) {
  .articles-mockup-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-card-featured {
    grid-column: span 2;
  }
  .article-consult-banner {
    flex-wrap: wrap;
    padding: 24px;
  }
  .consult-banner-quote {
    display: none;
  }
}

@media (max-width: 768px) {
  .articles-mockup-grid {
    grid-template-columns: 1fr;
  }
  .article-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .featured-card-media {
    min-height: 240px;
    order: -1;
  }
  .article-consult-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }
  .consult-banner-mascot {
    margin: 0 auto;
  }
  .articles-top-right-decor {
    display: none;
  }
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-400);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.08);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: transparent;
}

.faq-question-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
}

.faq-icon-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background var(--transition-fast);
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(180deg);
  background: var(--primary-600);
  color: var(--white);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer-content {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--slate-600);
  line-height: 1.65;
  border-top: 1px solid var(--slate-100);
  padding-top: 14px;
}

/* ==========================================================================
   CTA BANNER SECTION ("Mulai Perjalanan Senyum Terbaikmu")
   ========================================================================== */
.cta-section {
  padding: 40px 0 80px;
}

.cta-banner-wrapper {
  background: var(--gradient-cta);
  border-radius: var(--radius-2xl);
  padding: 48px 56px;
  color: var(--white);
  box-shadow: 0 24px 48px -12px rgba(2, 132, 199, 0.4);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 30px;
}

.cta-bg-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta-content-col h2 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-content-col p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 500px;
}

.cta-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-mascot-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-mascot-img-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-mascot-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  animation: floatSlow 4s ease-in-out infinite;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #ffffff;
  border-top: 1.5px solid var(--primary-100);
  padding: 60px 0 28px;
  position: relative;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 14px 0 22px;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary-600);
  border: 1px solid var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--primary-600);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(2, 132, 199, 0.25);
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-link-item {
  font-size: 0.88rem;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-link-item:hover {
  color: var(--primary-600);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--primary-600);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-100);
  font-size: 0.82rem;
  color: var(--slate-500);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--primary-600);
}

/* ==========================================================================
   MODALS (BOOKING, ARTICLES, DOCTOR PROFILE, ZOOM LIGHTBOX)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 25px 60px -15px rgba(2, 132, 199, 0.25), 0 15px 30px -10px rgba(15, 23, 42, 0.2);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform var(--transition-normal);
  border: 2px solid var(--primary-100);
}

.modal-backdrop.open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-container.modal-lg {
  max-width: 820px;
}

.modal-header {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  flex-shrink: 0;
  z-index: 10;
}

.modal-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid var(--slate-200);
}

.modal-close-btn:hover {
  background: var(--primary-50);
  color: var(--primary-700);
  border-color: var(--primary-200);
  transform: scale(1.06);
}

.modal-body {
  padding: 24px 28px 28px;
  flex: 1;
  overflow-y: scroll; /* Ensures scrollbar track and thumb are always visible */
  scrollbar-width: thin;
  scrollbar-color: #0284c7 #e0f2fe;
}

/* Modal Body Custom Always-Visible Aesthetic Blue Scrollbar */
.modal-body::-webkit-scrollbar {
  width: 9px;
  display: block;
}

.modal-body::-webkit-scrollbar-track {
  background: #e0f2fe;
  border-radius: 9999px;
  border: 1.5px solid #bae6fd;
  margin: 10px 0;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  border-radius: 9999px;
  border: 1.5px solid #e0f2fe;
  box-shadow: inset 0 0 6px rgba(2, 132, 199, 0.4);
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0ea5e9 0%, #0369a1 100%);
}

/* Booking Form Styles inside Modal */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: var(--white);
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

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

/* Article Modal Body Formatting */
.article-modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.article-content-body h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 20px 0 10px;
}

.article-content-body p {
  font-size: 0.94rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 14px;
}

.article-content-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
  list-style: disc;
}

.article-content-body li {
  font-size: 0.92rem;
  color: var(--slate-700);
  margin-bottom: 6px;
}

/* ==========================================================================
   FLOATING WIDGETS (WHATSAPP & SCROLL TO TOP)
   ========================================================================== */
.floating-widget-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 999;
}

.wa-floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.wa-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.wa-online-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-online-dot::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
}

.scroll-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-700);
  border: 1.5px solid var(--primary-200);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes floatMedium {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   DOCTOR PROFILE MODAL (EXPANDED CREDENTIALS & CV STYLING)
   ========================================================================== */
.doctor-modal-banner {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  padding: 24px;
  border-radius: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.25);
  position: relative;
  overflow: hidden;
}

.doctor-modal-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.doctor-modal-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  background: #bae6fd;
}

.doctor-modal-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-modal-banner-info {
  display: flex;
  flex-direction: column;
}

.doctor-modal-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.doctor-modal-specialty {
  font-size: 0.86rem;
  font-weight: 600;
  color: #bae6fd;
  margin-bottom: 10px;
}

.doctor-modal-reg-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.doctor-reg-chip {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.doctor-modal-section-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 24px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doctor-modal-section-title svg {
  color: #0284c7;
}

.doctor-modal-quote-box {
  background: #f0f9ff;
  border-left: 4px solid #0284c7;
  padding: 14px 18px;
  border-radius: 0 14px 14px 0;
  margin-bottom: 20px;
}

.doctor-modal-quote-box p {
  font-size: 0.88rem;
  color: var(--slate-700);
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}

/* Timeline Education */
.doctor-timeline {
  position: relative;
  padding-left: 28px;
  margin-bottom: 20px;
}

.doctor-timeline::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 10px;
  width: 2px;
  background: #bae6fd;
}

.doctor-timeline-item {
  position: relative;
  margin-bottom: 16px;
}

.doctor-timeline-item:last-child {
  margin-bottom: 0;
}

.doctor-timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0284c7;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.2);
}

.doctor-timeline-degree {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
}

.doctor-timeline-campus {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0284c7;
}

.doctor-timeline-note {
  font-size: 0.76rem;
  color: var(--slate-500);
  margin-top: 2px;
}

/* 2-Column Certs & Organizations Grid */
.doctor-modal-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.doctor-modal-card-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s ease;
}

.doctor-modal-card-item:hover {
  background: #ffffff;
  border-color: #bae6fd;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.doctor-modal-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doctor-modal-card-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: 2px;
}

.doctor-modal-card-sub {
  font-size: 0.75rem;
  color: var(--slate-600);
  line-height: 1.35;
}

/* Clinical Focus Tags */
.doctor-focus-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.doctor-focus-pill {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  color: #0369a1;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.doctor-focus-pill:hover {
  background: #e0f2fe;
  border-color: #7dd3fc;
  color: #0284c7;
  transform: translateY(-1px);
}

.doctor-focus-pill .focus-pill-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #0284c7;
  display: block;
}

/* Modal Bottom Action Footer */
.doctor-modal-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.doctor-modal-footer-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   FAQ SECTION (MOCKUP STYLE)
   ========================================================================== */
.faq-mockup-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 50%, #ffffff 100%);
  padding: 100px 0 60px;
  overflow: hidden;
}

.faq-mockup-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.faq-mockup-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Top Right Handwritten Decor */
.faq-top-right-decor {
  position: absolute;
  top: 30px;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.faq-top-right-quote {
  font-family: var(--font-handwritten);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.15;
  text-align: right;
  transform: rotate(-4deg);
  text-shadow: 0 2px 4px rgba(2, 132, 199, 0.08);
}

/* Grid Layout */
.faq-mockup-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
  align-items: start;
}

/* Left Column */
.faq-left-col {
  display: flex;
  flex-direction: column;
}

.faq-left-col .section-tag {
  align-self: flex-start;
  margin-bottom: 14px;
}

.faq-main-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.faq-main-title .blue-highlight {
  color: var(--primary-600);
}

.faq-main-desc {
  font-size: 0.94rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Live Search Box */
.faq-search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  background: var(--white);
  border-radius: 9999px;
  border: 1.5px solid var(--slate-200);
  padding: 6px 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.faq-search-box:hover {
  border-color: var(--primary-300);
}

.faq-search-box:focus-within {
  border-color: var(--primary-500);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12);
}

.faq-search-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-500);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-search-input {
  flex: 1;
  width: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--slate-800);
  padding: 8px 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.faq-search-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.faq-search-input::placeholder {
  color: var(--slate-400);
  font-size: 0.88rem;
}

/* 4 Category Filter Row */
.faq-category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.faq-cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 6px 12px;
  background: #f0f9ff;
  border: 1.5px solid #e0f2fe;
  border-radius: 16px;
  color: var(--primary-800);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.faq-cat-btn .cat-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  transition: all var(--transition-fast);
}

.faq-cat-btn span {
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.faq-cat-btn:hover {
  background: var(--white);
  border-color: var(--primary-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.1);
}

.faq-cat-btn.active {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.28);
}

.faq-cat-btn.active .cat-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Doctor Consultation Card */
.faq-doctor-consult-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 15px;
  padding-top: 20px;
  width: 100%;
}

.consult-bubble-box {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  padding: 18px 22px 20px;
  border: 1.5px solid var(--slate-200);
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.08), 0 3px 8px rgba(15, 23, 42, 0.03);
  max-width: 250px;
  margin-right: -36px;
  margin-bottom: 28px;
  z-index: 3;
}

.consult-bubble-box p {
  font-size: 0.88rem;
  color: var(--slate-700);
  line-height: 1.45;
  margin: 0;
}

.consult-bubble-box strong {
  color: var(--primary-600);
  font-weight: 800;
}

.consult-bubble-icon {
  position: absolute;
  bottom: -14px;
  left: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
  border: 2.5px solid var(--white);
}

.consult-doc-wrap {
  position: relative;
  width: 210px;
  height: 250px;
  background: #f1f7fc;
  border-radius: 28px;
  border: 1.5px solid #e1effa;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: auto;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.06);
}

.consult-doc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
  display: block;
}

.consult-pointing-script {
  position: absolute;
  top: -24px;
  right: -8px;
  font-family: var(--font-handwritten);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1.05;
  transform: rotate(-3deg);
  text-align: center;
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(2, 132, 199, 0.12);
  z-index: 4;
}

/* Right Column: FAQ Accordion List */
.faq-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-mockup-item {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--slate-200);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.faq-mockup-item:hover {
  border-color: var(--primary-300);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.08);
}

.faq-mockup-item.active {
  border-color: var(--primary-400);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.12);
}

.faq-mockup-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-num-pill {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--primary-700);
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-mockup-item.active .faq-num-pill {
  background: var(--primary-600);
  color: var(--white);
}

.faq-item-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-900);
  flex-grow: 1;
  line-height: 1.35;
}

.faq-chevron-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  flex-shrink: 0;
  transition: transform var(--transition-normal), background var(--transition-fast);
}

.faq-mockup-item.active .faq-chevron-icon {
  transform: rotate(180deg);
  background: #e0f2fe;
}

.faq-mockup-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-mockup-text {
  padding: 0 22px 20px 76px;
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* Bottom WhatsApp Help Box */
.faq-whatsapp-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  border-radius: 20px;
  padding: 18px 24px;
  margin-top: 8px;
  gap: 20px;
}

.wa-box-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wa-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.wa-text-col {
  display: flex;
  flex-direction: column;
}

.wa-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 0 0 2px;
}

.wa-desc {
  font-size: 0.82rem;
  color: var(--slate-600);
  margin: 0;
}

.wa-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary-700);
  border: 1.5px solid #bae6fd;
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
  transition: all var(--transition-fast);
}

.wa-chat-btn:hover {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.25);
}

.wa-chat-btn svg {
  transition: transform var(--transition-fast);
}

.wa-chat-btn:hover svg:last-child {
  transform: translateX(4px);
}

/* ==========================================================================
   CTA BANNER SECTION (KONSULTASI SEKARANG - MOCKUP STYLE)
   ========================================================================== */
.cta-mockup-section {
  padding: 30px 0 90px;
  position: relative;
  z-index: 2;
}

.cta-mockup-card {
  position: relative;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 45%, #0284c7 100%);
  border-radius: 32px;
  padding: 48px 56px;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(2, 132, 199, 0.35);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.cta-mockup-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-image: url('../images/facility_chair.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%);
}

.cta-mockup-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.cta-mini-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.cta-mockup-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-mockup-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 540px;
}

.cta-mockup-desc strong {
  color: var(--white);
  font-weight: 700;
}

.cta-mockup-pillars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.pillar-micro-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.84rem;
  font-weight: 700;
}

.pillar-micro-item svg {
  color: #7dd3fc;
}

.cta-mockup-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.cta-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 280px;
}

.cta-btn-white-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary-700);
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
  transition: all var(--transition-fast);
}

.cta-btn-white-solid:hover {
  background: #f0f9ff;
  color: var(--primary-800);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.cta-btn-frosted {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cta-btn-frosted:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.cta-handwritten-quote {
  font-family: var(--font-handwritten);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  text-align: right;
  line-height: 1.15;
  transform: rotate(-3deg);
  text-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-features-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-mockup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-mockup-grid, .services-grid, .results-grid, .locations-grid, .articles-grid, .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .credentials-mockup-grid, .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: 20px;
    right: 20px;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
    border: 1.5px solid var(--primary-100);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all var(--transition-normal);
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero-section {
    padding-top: 96px;
    padding-bottom: 40px;
    background-position: center top;
    background-size: cover;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 14px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin: 0 auto 24px;
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 18px;
    margin-bottom: 16px;
    text-align: left;
  }

  .hero-stat-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid #e0f2fe;
  }

  .hero-bottom-left-quote {
    align-items: center;
    text-align: center;
    margin: 8px auto 0;
  }

  .hero-quote-text {
    font-size: 1.45rem;
    transform: rotate(-1deg);
    text-align: center;
  }

  .hero-quote-signature {
    font-size: 1.15rem;
    padding-left: 0;
    transform: none;
  }

  /* Clean Flow for Hero Visual Column on Mobile (No Overlapping Absolute Cards) */
  .hero-visual-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-height: auto;
    width: 100%;
    max-width: 340px;
    margin: 16px auto 0;
    padding: 0;
  }

  .hero-wall-text {
    font-size: 0.95rem;
  }

  .hero-floating-badge-pill {
    position: static;
    transform: none;
    animation: none;
    margin: 0 auto;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.12);
  }

  .hero-floating-case-card {
    position: static;
    transform: none;
    animation: none;
    width: 100%;
    max-width: 320px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.14);
    margin: 0 auto;
  }

  .case-card-images {
    height: 80px;
  }

  .hero-bottom-right-script {
    position: static;
    transform: rotate(-2deg);
    text-align: center;
    align-items: center;
    margin-top: 4px;
    font-size: 1.35rem;
  }

  /* 4 Pillars Bottom Card on Mobile */
  .hero-bottom-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 18px;
    margin-top: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08);
    position: relative;
    z-index: 2;
  }

  .hero-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
  }

  .hero-bar-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .hero-bar-item::after {
    display: none !important;
  }

  .bar-icon-wrap {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .bar-title {
    font-size: 0.88rem;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .bar-desc {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .hero-bottom-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 9999px;
  }

  /* About Mockup Mobile */
  .about-top-right-decor {
    position: static;
    margin-bottom: 12px;
    align-items: center;
    text-align: center;
  }

  .about-top-right-quote {
    transform: none;
    text-align: center;
    font-size: 1.35rem;
  }

  .about-top-right-aligner {
    display: none;
  }

  .about-mockup-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-mockup-quote-card {
    position: static;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 100%;
  }

  .about-bottom-left-script {
    align-self: center;
    text-align: center;
    padding-right: 0;
    margin-top: 10px;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-advantages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .about-banner-left {
    flex-direction: column;
    text-align: center;
  }

  .doctor-modal-banner {
    flex-direction: column;
    text-align: center;
  }

  .doctor-modal-reg-badges {
    justify-content: center;
  }

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

  .doctor-modal-footer {
    flex-direction: column;
    text-align: center;
  }

  .doctor-modal-footer-btns {
    flex-direction: column;
    width: 100%;
  }

  .doctor-modal-footer-btns button, .doctor-modal-footer-btns a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Mockup Certificate Mobile adjustments */
  .cert-handwritten-badge, .cert-quote-visual-badge, .services-top-right-decor {
    position: static;
    margin-bottom: 16px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .cert-handwritten-text {
    transform: none;
    text-align: center;
    font-size: 1.35rem;
  }

  .cert-handwritten-arrow {
    display: none;
  }

  .cert-quote-visual-badge {
    flex-direction: column-reverse;
  }

  .cert-floating-quote {
    text-align: center;
    font-size: 1.25rem;
  }

  /* Services Mobile Adjustments */
  .service-mockup-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-mockup-img-wrap {
    min-height: 190px;
    max-height: 220px;
  }

  .services-bottom-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .services-bottom-banner-left {
    flex-direction: column;
    text-align: center;
  }

  /* Schedules Mockup Mobile Adjustments */
  .schedules-top-right-decor {
    position: static;
    margin-bottom: 16px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .schedules-handwritten-quote {
    transform: none;
    text-align: center;
    font-size: 1.35rem;
  }

  .schedules-mockup-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .schedules-bottom-container {
    grid-template-columns: 1fr;
  }

  .schedules-calendar-widget {
    display: none;
  }

  .schedules-bottom-pill-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .schedules-bottom-left {
    flex-direction: column;
    text-align: center;
  }

  .interactive-case-showcase {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .services-mockup-grid, .schedules-mockup-layout, .services-grid, .results-grid, .locations-grid, .articles-grid, .credentials-mockup-grid, .credentials-grid, .testimonial-track {
    grid-template-columns: 1fr;
  }

  /* FAQ Mockup Mobile Adjustments */
  .faq-top-right-decor {
    position: static;
    margin-bottom: 14px;
    text-align: center;
  }

  .faq-top-right-quote {
    transform: none;
    text-align: center;
    font-size: 1.4rem;
  }

  .faq-mockup-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .faq-doctor-consult-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .consult-bubble-box {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .consult-doc-wrap {
    margin: 0 auto;
  }

  .consult-pointing-script {
    top: -20px;
    right: 0;
  }

  .faq-mockup-text {
    padding: 0 18px 18px 18px;
  }

  .faq-whatsapp-box {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .wa-box-left {
    flex-direction: column;
    text-align: center;
  }

  .wa-chat-btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA Mockup Mobile Adjustments */
  .cta-mockup-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .cta-mockup-card::before {
    display: none;
  }

  .cta-mockup-left {
    align-items: center;
  }

  .cta-mockup-pillars {
    justify-content: center;
  }

  .cta-mockup-right {
    align-items: center;
    width: 100%;
  }

  .cta-btn-stack {
    max-width: 100%;
  }

  .cta-handwritten-quote {
    text-align: center;
    transform: none;
  }

  .cta-banner-wrapper {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    text-align: center;
  }

  .cta-action-row {
    justify-content: center;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


