/* ==========================================================================
   DR. CARMEN POPA - ESTETIC IMPLANT CLINIC
   Ultra-Fast, Mobile-First Dental Theme
   ========================================================================== */

:root {
  --primary: #0b2545;
  --primary-light: #133b6b;
  --teal: #0d9488;
  --teal-hover: #0f766e;
  --teal-light: #ccfbf1;
  --gold: #aa8f00;
  --gold-hover: #967d00;
  --gold-light: #fef9c3;
  --gold-bright: #dfba35;
  --gold-dark: #8c7500;
  --gold-gradient: linear-gradient(135deg, #dfba35 0%, #aa8f00 55%, #8c7500 100%);
  --gold-glow: rgba(170, 143, 0, 0.3);
  --gold-border: rgba(170, 143, 0, 0.28);
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebd56;
  --phone-blue: #0284c7;
  
  --bg-main: #f8fafc;
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-color: #e2e8f0;
  
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-float: 0 12px 28px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px; /* Space for mobile floating bar */
  overflow-x: hidden;
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--teal-hover);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.topbar {
  background: var(--primary);
  color: #cbd5e1;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-info, .topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar a {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar a:hover {
  color: #ffffff;
}

/* Address in topbar is hidden on mobile, visible only on desktop (>=992px) */
.topbar-info,
.d-none-mobile {
  display: none !important;
}

.topbar .container {
  justify-content: center;
}

.topbar-contact {
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .topbar-info,
  .d-none-mobile {
    display: flex !important;
  }
  .topbar .container {
    justify-content: space-between;
  }
}

.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.25rem 0;
}

.header-logo {
  height: 62px;
  max-height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.logo-link:hover .header-logo {
  transform: scale(1.04);
}

@media (min-width: 992px) {
  .header-logo {
    height: 74px;
    max-height: 74px;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0.25rem;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
  line-height: 1;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
  z-index: 200;
  animation: dropdownFadeIn 0.2s ease forwards;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

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

.nav-dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background-color: #f8fafc;
  color: var(--teal);
  padding-left: 1.5rem;
}

.header-cta {
  display: none;
}

@media (min-width: 992px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.hamburger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  z-index: 1001;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.hamburger-btn:hover {
  background-color: #f1f5f9;
}

@media (min-width: 992px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu: Sits below the header, clean list drawer */
.mobile-menu {
  display: none; /* Completely hidden when closed: zero overlap with header or buttons */
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px);
  background: #0b2545;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  flex-direction: column;
  align-items: stretch;
  padding: 0.75rem 1.25rem 6rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 99999;
}

.mobile-menu.open {
  display: flex !important;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 0.5rem;
  color: #f8fafc;
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.15s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #5eead4;
  padding-left: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-teal {
  background: var(--teal);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-teal:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff !important;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal) !important;
}

.btn-outline:hover {
  background: var(--teal);
  color: #ffffff !important;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (MOBILE FAST ACCESS)
   ========================================================================== */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 62px;
  height: calc(62px + env(safe-area-inset-bottom, 0));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem calc(0.5rem + env(safe-area-inset-bottom, 0));
  z-index: 990;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .floating-bar {
    display: none;
  }
}

.floating-btn {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

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

.floating-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.floating-btn span {
  white-space: nowrap;
}

.floating-btn.whatsapp {
  background: var(--whatsapp);
  color: #ffffff !important;
}

.floating-btn.phone {
  background: var(--primary);
  color: #ffffff !important;
}

/* Floating WhatsApp badge for desktop */
.desktop-whatsapp-badge {
  display: none;
}

@media (min-width: 992px) {
  .desktop-whatsapp-badge {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 95;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--whatsapp);
    color: #ffffff !important;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: var(--shadow-float);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .desktop-whatsapp-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4);
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background: 
    linear-gradient(135deg, rgba(11, 37, 69, 0.94) 0%, rgba(19, 59, 107, 0.88) 55%, rgba(13, 148, 136, 0.78) 100%),
    url('/assets/img/banner1.jpg') center right / cover no-repeat;
  color: #ffffff;
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero,
  .hero.hero-clinic {
    background-attachment: fixed; /* Parallax fluid pe ecrane mari */
  }
}

/* Micro-grid textură geometrică medicală modernă */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg-main);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 3;
}

/* Variante alternative elegante */
.hero.hero-clinic {
  background: 
    linear-gradient(135deg, rgba(11, 37, 69, 0.94) 0%, rgba(19, 59, 107, 0.88) 50%, rgba(140, 117, 0, 0.72) 100%),
    url('/assets/img/banner3.jpg') center center / cover no-repeat;
}

.hero.hero-minimal {
  background: linear-gradient(135deg, #07192f 0%, #0b2545 45%, #133b6b 75%, #134e4a 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fef08a;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-title span {
  color: #5eead4;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .hero-stats {
    display: none !important;
  }
}

.stat-item .stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-top: 0.35rem;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 4px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.hero-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  bottom: -15px;
  left: 20px;
  background: var(--bg-white);
  color: var(--primary);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .hero-card img {
    height: 260px;
  }
  .hero-card-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
}

.hero-card-badge strong {
  font-size: 1.05rem;
  display: block;
}

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

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.section-tag {
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.35rem;
  }
}

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

/* ==========================================================================
   SERVICES GRID & TABS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.service-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

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

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

.service-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-color);
}

.service-price {
  font-weight: 800;
  color: var(--teal);
  font-size: 1rem;
}

/* ==========================================================================
   LIVE SERVICES ACCORDION / PRICE LIST (FROM DB)
   ========================================================================== */
.price-filter-bar {
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-search-input {
  flex: 1;
  min-width: 260px;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: #ffffff;
}

.price-search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.category-block {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.category-title {
  background: #f1f5f9;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--teal-light);
  color: var(--teal);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.service-table {
  width: 100%;
  border-collapse: collapse;
}

.service-table tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s ease;
}

.service-table tr:last-child {
  border-bottom: none;
}

.service-table tr:hover {
  background: #f8fafc;
}

.service-table td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
}

.service-name-cell {
  font-weight: 600;
  color: var(--text-dark);
}

.service-name-cell small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.service-duration-cell {
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.service-price-cell {
  font-weight: 800;
  color: var(--teal);
  font-size: 1.1rem;
  text-align: right;
  white-space: nowrap;
}

.service-action-cell {
  text-align: right;
  width: 120px;
}

/* Transformare servicii sub formă de carduri elegante pe mobil */
@media (max-width: 768px) {
  .category-block {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
  }

  .category-title {
    background: #ffffff;
    border-radius: 14px;
    padding: 0.85rem 1.15rem;
    margin-bottom: 0.85rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(11, 37, 69, 0.04);
  }

  .service-table,
  .service-table tbody {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }

  .service-table tr.service-item-row {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "name name"
      "price action" !important;
    align-items: center !important;
    gap: 0.75rem 0.5rem !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 1.15rem 1.15rem !important;
    box-shadow: 0 2px 8px rgba(11, 37, 69, 0.04) !important;
    border-left: 4px solid var(--teal) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .service-table tr.service-item-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 37, 69, 0.08) !important;
  }

  .service-name-cell {
    grid-area: name !important;
    padding: 0 !important;
    border: none !important;
  }

  .service-name-cell .service-title-text {
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    display: block !important;
    line-height: 1.35 !important;
  }

  .service-name-cell small {
    display: block !important;
    color: var(--text-muted) !important;
    font-size: 0.82rem !important;
    margin-top: 0.35rem !important;
    line-height: 1.45 !important;
  }

  .service-price-cell {
    grid-area: price !important;
    padding: 0.65rem 0 0 0 !important;
    border: none !important;
    border-top: 1px solid #f1f5f9 !important;
    text-align: left !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: var(--teal) !important;
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
  }

  .service-action-cell {
    grid-area: action !important;
    padding: 0.65rem 0 0 0 !important;
    border: none !important;
    border-top: 1px solid #f1f5f9 !important;
    text-align: right !important;
    width: auto !important;
  }

  .service-action-cell .btn-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem 0.95rem !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25) !important;
  }
}

/* ==========================================================================
   DOCTOR SPOTLIGHT & ABOUT
   ========================================================================== */
.doctor-spotlight {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .doctor-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.doctor-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.doctor-experience-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: #ffffff;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-list li svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question svg {
  transition: transform 0.25s ease;
  color: var(--teal);
  flex-shrink: 0;
}

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

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   BLOG LIST & SINGLE POST
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.post-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.post-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.post-title a {
  color: var(--primary);
}

.post-title a:hover {
  color: var(--teal);
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.article-container {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.article-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.article-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content h2, .article-content h3 {
  color: var(--primary);
  margin: 2rem 0 1rem;
  font-weight: 700;
}

.article-content ul, .article-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-content img {
  border-radius: var(--radius);
  margin: 1.5rem auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #06152b;
  color: #94a3b8;
  padding: 4rem 0 2rem;
  margin-top: auto;
  border-top: 3px solid var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
  }
}

.footer-credits {
  font-size: 0.82rem;
  color: #94a3b8;
}

.gsoft-credit {
  color: #5eead4 !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gsoft-credit:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.admin-link {
  color: #64748b !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.admin-link:hover {
  color: #94a3b8 !important;
}

/* ==========================================================================
   GOOGLE REVIEWS CAROUSEL SECTION
   ========================================================================== */
.section-reviews {
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.reviews-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reviews-header-left {
  max-width: 600px;
}

.google-badge-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 280px;
}

.google-badge-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.google-svg-icon {
  flex-shrink: 0;
}

.google-badge-info {
  display: flex;
  flex-direction: column;
}

.google-badge-info .badge-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-rating-row .rating-score {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.badge-rating-row .rating-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.google-badge-sub {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f1f5f9;
  color: #1e293b !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-google-review:hover {
  background: var(--teal);
  color: #ffffff !important;
  border-color: var(--teal);
}

/* Carousel Container */
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

.carousel-btn.prev {
  left: -22px;
}

.carousel-btn.next {
  right: -22px;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.75rem 0.25rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 290px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  gap: 0.75rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

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

.reviewer-name {
  font-weight: 700;
  color: #0f172a !important;
  font-size: 0.98rem;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}

.reviewer-name:hover {
  color: var(--teal) !important;
  text-decoration: underline;
}

.reviewer-meta {
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2px;
  flex-wrap: wrap;
}

.reviewer-dot {
  color: #cbd5e1;
}

.google-icon-verified {
  flex-shrink: 0;
  opacity: 0.85;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.review-stars-gold {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-verified-tag {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.review-body {
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 0.85rem;
  margin-top: auto;
}

.review-maps-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.review-maps-link:hover {
  color: var(--primary) !important;
  transform: translateX(2px);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.reviews-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.reviews-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 12px;
}

.reviews-bottom-action {
  text-align: center;
  margin-top: 2.25rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .review-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  .carousel-btn.prev {
    left: -12px;
  }
  .carousel-btn.next {
    right: -12px;
  }
}

@media (max-width: 640px) {
  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 1.35rem;
  }
  .carousel-btn {
    display: none; /* Swipe works natively on mobile with scroll-snap */
  }
  .google-badge-box {
    width: 100%;
    min-width: unset;
  }
  .reviews-header-wrap {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }
}

/* ==========================================================================
   KEN BURNS CINEMATIC IMAGE MOTION
   ========================================================================== */
@keyframes kenBurnsSlow {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes kenBurnsDoctor {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.06) translate(1.2%, -1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

.ken-burns-card {
  overflow: hidden;
  position: relative;
}

.hero-card {
  overflow: hidden;
  position: relative;
}

.hero-card img,
.hero-card .ken-burns-img {
  animation: kenBurnsSlow 22s ease-in-out infinite alternate;
  will-change: transform;
}

.doctor-photo-wrap {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(170, 143, 0, 0.35);
  box-shadow: 0 16px 36px rgba(170, 143, 0, 0.18), var(--shadow-lg);
}

.doctor-photo-wrap img,
.doctor-photo-wrap .ken-burns-img {
  animation: kenBurnsDoctor 26s ease-in-out infinite alternate;
  will-change: transform;
}

.service-card-img,
.post-card-img {
  overflow: hidden;
  position: relative;
}

.service-card-img img,
.post-card-img img,
.ken-burns-hover {
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
  will-change: transform;
}

.service-card:hover .service-card-img img,
.post-card:hover .post-card-img img,
.ken-burns-card:hover .ken-burns-hover {
  transform: scale(1.12) translate(-1.5%, -1%);
}

/* ==========================================================================
   MODERN DYNAMIC MOVEMENT & AMBIENT ANIMATIONS
   ========================================================================== */
@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(35px, -30px) scale(1.15);
  }
  100% {
    transform: translate(-25px, 20px) scale(0.95);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 35px) scale(1.18);
  }
  100% {
    transform: translate(30px, -20px) scale(0.92);
  }
}

.hero-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

.orb-gold {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(170, 143, 0, 0.4) 0%, rgba(223, 186, 53, 0.2) 50%, transparent 75%);
  top: -60px;
  right: 5%;
  animation: floatOrb1 18s ease-in-out infinite alternate;
}

.orb-teal {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.38) 0%, rgba(13, 148, 136, 0.12) 55%, transparent 80%);
  bottom: -90px;
  left: -60px;
  animation: floatOrb2 22s ease-in-out infinite alternate;
}

.section-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

.orb-gold-subtle {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(170, 143, 0, 0.3) 0%, transparent 75%);
  top: -50px;
  right: -50px;
  animation: floatOrb1 20s ease-in-out infinite alternate;
}

/* Gold Sparkle Twinkle (From Logo Twin Stars) */
@keyframes sparkleTwinkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.85;
    filter: drop-shadow(0 0 2px rgba(170, 143, 0, 0.5));
  }
  50% {
    transform: scale(1.25) rotate(12deg);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(223, 186, 53, 0.95));
  }
}

.gold-sparkle {
  display: inline-block;
  color: #dfba35;
  animation: sparkleTwinkle 3s ease-in-out infinite;
  vertical-align: middle;
}

/* Pulsing Status Dot */
@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.badge-pulse-indicator {
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(170, 143, 0, 0.8);
}

.badge-pulse-indicator::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulseRing 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/* ==========================================================================
   SCROLL REVEAL (FADE & RISE ANIMATIONS)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   GOLD ACCENTS & STYLING (LOGO-MATCHED #aa8f00)
   ========================================================================== */
.section-tag {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.gold-tag {
  color: var(--gold) !important;
}

.gold-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #fff7a1 0%, #dfba35 50%, #aa8f00 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  animation: goldTextGlowZoom 3.8s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px rgba(223, 186, 53, 0.45));
  will-change: transform, filter;
}

@keyframes goldTextGlowZoom {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(223, 186, 53, 0.35));
    background-position: 0% center;
  }
  50% {
    transform: scale(1.045);
    filter: drop-shadow(0 0 20px rgba(254, 240, 138, 0.85)) drop-shadow(0 0 10px rgba(223, 186, 53, 0.95));
    background-position: 100% center;
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(223, 186, 53, 0.35));
    background-position: 0% center;
  }
}

.gold-price {
  color: var(--gold) !important;
  font-weight: 800;
}

.hero-badge {
  background: rgba(170, 143, 0, 0.22) !important;
  border: 1px solid rgba(223, 186, 53, 0.5) !important;
  color: #fef08a !important;
  box-shadow: 0 4px 16px rgba(170, 143, 0, 0.25);
}

.hero-card-badge {
  border: 1.5px solid rgba(170, 143, 0, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 0 22px rgba(170, 143, 0, 0.16);
}

.hero-stars-gold {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.doctor-experience-tag {
  background: var(--gold-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px var(--gold-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 14px var(--gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(170, 143, 0, 0.5);
  filter: brightness(1.06);
}

/* Efect dinamic de zoom mișcare și puls pentru butonul Vezi Servicii & Prețuri */
.hero-cta-zoom {
  animation: heroBtnZoomMotion 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

@keyframes heroBtnZoomMotion {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 14px var(--gold-glow);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(223, 186, 53, 0.65), 0 0 16px rgba(254, 240, 138, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px var(--gold-glow);
  }
}

.hero-cta-zoom:hover {
  animation-play-state: paused;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(170, 143, 0, 0.7), 0 0 20px rgba(223, 186, 53, 0.8);
}

/* Efect de luciu de lumină (light sheen) care traversează periodic butonul */
.hero-cta-zoom::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: btnShimmerSweep 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnShimmerSweep {
  0%, 25% {
    left: -60%;
  }
  75%, 100% {
    left: 140%;
  }
}

/* ==========================================================================
   MOBILE INTRO VIDEO OVERLAY
   ========================================================================== */
.mobile-intro-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #07192f;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
}

.mobile-intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-intro-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobileIntroVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #07192f;
}

.mobile-intro-header {
  position: absolute;
  top: env(safe-area-inset-top, 16px);
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.intro-logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.skip-intro-btn {
  background: rgba(11, 37, 69, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(223, 186, 53, 0.45);
  color: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
}

.skip-intro-btn:active {
  transform: scale(0.95);
  background: var(--gold);
}

.intro-progress-bar {
  position: absolute;
  bottom: env(safe-area-inset-bottom, 14px);
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  z-index: 10;
}

.intro-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  border-radius: 3px;
  transition: width 0.1s linear;
}

@media (min-width: 769px) {
  .mobile-intro-overlay {
    display: none !important;
  }
}

/* ==============================================================================
   SERVICES SLIDER SECTION (14 Specializări & Tratamente)
   ============================================================================== */
.section-services-slider {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.services-slider-title-col {
  flex: 1 1 500px;
}

.services-slider-nav-col {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-swipe-badge {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(223, 186, 53, 0.15);
  border: 1px solid rgba(223, 186, 53, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  animation: pulseSwipe 2s infinite ease-in-out;
}

@keyframes pulseSwipe {
  0%, 100% { transform: translateX(0); opacity: 0.9; }
  50% { transform: translateX(4px); opacity: 1; }
}

.slider-controls-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.services-nav-btn:hover {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.25);
  transform: translateY(-2px);
}

.services-slider-wrapper {
  position: relative;
  width: 100%;
}

.services-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 0.25rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-slide-card {
  flex: 0 0 340px;
  width: 340px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(11, 37, 69, 0.05);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s cubic-bezier(0.2, 0, 0, 1), border-color 0.3s ease;
  user-select: none;
  position: relative;
}

.service-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 37, 69, 0.1), 0 0 0 1px rgba(223, 186, 53, 0.3);
  border-color: #cbd5e1;
}

.service-slide-card.card-urgent {
  border-top-color: #ef4444;
  background: linear-gradient(180deg, #fffafa 0%, #ffffff 100%);
}

.service-slide-card.card-urgent:hover {
  box-shadow: 0 16px 32px rgba(239, 68, 68, 0.15), 0 0 0 1px rgba(239, 68, 68, 0.4);
}

.service-slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-slide-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(13, 148, 136, 0.08);
  color: var(--teal);
  border: 1px solid rgba(223, 186, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-slide-card:hover .service-slide-icon-box {
  background: var(--teal);
  color: #ffffff;
  transform: scale(1.05) rotate(-3deg);
}

.service-slide-card.card-urgent .service-slide-icon-box {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.service-slide-card.card-urgent:hover .service-slide-icon-box {
  background: #ef4444;
  color: #ffffff;
}

.service-slide-num {
  font-family: monospace, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dark);
  background: rgba(223, 186, 53, 0.12);
  border: 1px solid rgba(223, 186, 53, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.service-slide-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.service-slide-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.service-slide-kw {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.kw-pin {
  flex-shrink: 0;
  font-size: 0.85rem;
}

.service-slide-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1.25rem;
}

.service-tag-pill {
  font-size: 0.7rem;
  font-weight: 500;
  color: #64748b;
  background: #f8fafc;
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.service-slide-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 0.85rem;
  margin-top: auto;
}

.service-slide-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.08);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-slide-action-btn:hover {
  background: var(--teal);
  color: #ffffff;
  transform: translateY(-1px);
}

.service-slide-action-btn.urgent-btn {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  justify-content: center;
}

.service-slide-action-btn.urgent-btn:hover {
  background: #dc2626;
  color: #ffffff;
}

.services-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

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

.service-dot.active {
  background: var(--gold-dark);
  width: 22px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .services-slider-header {
    margin-bottom: 1.25rem;
  }
  .mobile-swipe-badge {
    display: inline-flex;
  }
  .slider-controls-group {
    display: none; /* Mobile uses natural touch-swipe */
  }
  .service-slide-card {
    flex: 0 0 84%;
    width: 84%;
    min-width: 280px;
    max-width: 320px;
    padding: 1.35rem;
  }
  .services-track {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.services-all-btn {
  max-width: 100%;
  white-space: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .services-all-btn {
    width: auto;
    max-width: calc(100vw - 2rem);
    padding: 0.75rem 1.25rem;
    font-size: 0.92rem;
  }
}

