/* Prague Clinics — Main CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&display=swap');

/* ═══ DESIGN TOKENS ═══ */
:root {
  --pc-background: #FAF9F6;
  --pc-foreground: #1E2435;
  --pc-card: #FFFFFF;
  --pc-border: #EDE9E1;
  --pc-muted: #F5F3EF;
  --pc-muted-fg: #797D87;
  --pc-primary: #122040;
  --pc-primary-fg: #FAF9F6;
  --pc-gold: #C4A55A;
  --pc-gold-light: #F5EFE0;
  --pc-gold-glow: #CDB06A;
  --pc-emerald: #1D8A5E;
  --pc-radius: 0.75rem;
  --pc-vip-bg: #1A1E2B;
  --pc-vip-charcoal: #252B38;
  --pc-vip-ivory: #F7F3EC;
  --pc-vip-gold: #CDB06A;
  --pc-vip-gold-muted: #B09040;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Alexandria', sans-serif;
  background: var(--pc-background);
  color: var(--pc-foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Alexandria', sans-serif;
  font-weight: 600;
  line-height: 1.1;
}

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

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

button {
  font-family: 'Alexandria', sans-serif;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ═══ UTILITIES ═══ */
.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-padding {
  padding: 5rem 1rem;
}

.luxury-divider {
  width: 4rem;
  height: 1px;
  background: var(--pc-gold);
  display: block;
}

.luxury-divider-center {
  width: 4rem;
  height: 1px;
  background: var(--pc-gold);
  margin: 0 auto;
  display: block;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--pc-gold), var(--pc-gold-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(237, 233, 225, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pc-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pc-gold);
  display: block;
  margin-bottom: .75rem;
}

.grain-texture {
  position: relative;
}

.grain-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Alexandria', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 9999px;
  font-size: .9375rem;
}

.btn-primary {
  background: var(--pc-primary);
  color: var(--pc-primary-fg);
  padding: .75rem 1.75rem;
}

.btn-primary:hover {
  background: #1a2f5a;
  box-shadow: 0 8px 24px rgba(18, 32, 64, .3);
}

.btn-white {
  background: #fff;
  color: var(--pc-primary);
  padding: .75rem 1.75rem;
}

.btn-white:hover {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 30px rgba(255, 255, 255, .25);
}

.btn-outline {
  background: transparent;
  color: var(--pc-foreground);
  padding: .75rem 1.75rem;
  border: 1px solid var(--pc-border);
}

.btn-outline:hover {
  border-color: var(--pc-gold);
  color: var(--pc-gold);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  padding: .75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, .25);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .2);
}

.btn-gold {
  background: transparent;
  color: var(--pc-gold);
  padding: .625rem 1.5rem;
  border: 1px solid var(--pc-gold);
  font-size: .875rem;
}

.btn-gold:hover {
  background: rgba(196, 165, 90, .1);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: .75rem 1.5rem;
  font-size: .875rem;
}

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

.btn-full {
  width: 100%;
}

/* ═══ NAVBAR ═══ */
.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all .5s ease;
}

.pc-header.is-transparent {
  background: transparent;
}

.pc-header.is-scrolled,
.pc-header.is-solid {
  background: rgba(250, 249, 246, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(237, 233, 225, .4);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .06);
}

/* Top bar */
.pc-top-bar {
  overflow: hidden;
  transition: height .5s ease, opacity .5s ease;
  height: 2.25rem;
}

.pc-top-bar.hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.pc-top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.25rem;
  font-size: .6875rem;
  letter-spacing: .05em;
}

.pc-top-bar a {
  display: flex;
  align-items: center;
  gap: .375rem;
  transition: color .2s;
}

.is-transparent .pc-top-bar a {
  color: rgba(255, 255, 255, .7);
}

.is-transparent .pc-top-bar a:hover {
  color: #fff;
}

.is-transparent .pc-top-bar-addr {
  color: rgba(255, 255, 255, .4);
}

.is-scrolled .pc-top-bar a,
.is-solid .pc-top-bar a {
  color: var(--pc-muted-fg);
}

.is-scrolled .pc-top-bar a:hover,
.is-solid .pc-top-bar a:hover {
  color: var(--pc-foreground);
}

.is-scrolled .pc-top-bar-addr,
.is-solid .pc-top-bar-addr {
  color: var(--pc-muted-fg);
  opacity: .5;
}

.pc-top-bar-addr {
  font-size: .625rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav row */
.pc-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-logo {
  display: flex;
  align-items: center;
}

.pc-logo img {
  height: 2.75rem;
  width: auto;
  transition: filter .5s ease;
}

.is-transparent .pc-logo img {
  filter: brightness(0) invert(1);
}

.is-scrolled .pc-logo img,
.is-solid .pc-logo img {
  filter: brightness(0);
}

/* ════════════════════════════════════════════
   DESKTOP NAVIGATION — HORIZONTAL FLEX LAYOUT
   wp_nav_menu() outputs: div.pc-nav-links > ul > li
   We must flex BOTH the wrapper AND the inner ul.
   ════════════════════════════════════════════ */
.pc-nav-links {
  display: none;
  /* hidden by default; shown at 1024px+ */
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* The ul WordPress generates inside .pc-nav-links — now has class="pc-nav-menu" */
.pc-nav-menu,
.pc-nav-links>ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* All top-level li items must also be flex-inline, not block */
.pc-nav-menu>li,
.pc-nav-links>ul>li,
.pc-nav-links>li {
  list-style: none !important;
  display: flex !important;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.pc-nav-link {
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .875rem;
  border-radius: .5rem;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: .25rem;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.is-transparent .pc-nav-link {
  color: rgba(255, 255, 255, .85);
}

.is-transparent .pc-nav-link:hover,
.is-transparent .pc-nav-link.active {
  color: #fff;
}

.is-scrolled .pc-nav-link,
.is-solid .pc-nav-link {
  color: var(--pc-muted-fg);
}

.is-scrolled .pc-nav-link:hover,
.is-scrolled .pc-nav-link.active,
.is-solid .pc-nav-link:hover,
.is-solid .pc-nav-link.active {
  color: var(--pc-foreground);
}

.pc-nav-chevron {
  transition: transform .2s;
  flex-shrink: 0;
}

.has-children:hover>a .pc-nav-chevron {
  transform: rotate(180deg);
}

/* ════ DROPDOWN ════ */

/* Extend the nav link's hit area downward so hovering into the gap
   keeps the parent <li> in :hover and the JS timer alive */
.pc-nav-parent {
  padding-bottom: 10px;
}

.pc-dropdown {
  position: absolute;
  top: 100%;
  margin-top: -10px;
  /* pulls dropdown up to visually close gap while padding-bottom bridges it */
  left: 50%;
  transform: translateX(-50%);
  min-width: 13rem;
  background: #fff;
  border: 1px solid rgba(200, 195, 185, .4);
  border-radius: .875rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12), 0 4px 16px rgba(0, 0, 0, .06);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility 0s linear .18s;
  z-index: 9999;
  list-style: none;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.has-children {
  position: relative;
}

/* JS-controlled open state (added/removed with close-delay in footer.php) */
.has-children.pc-drop-open .pc-dropdown,
.has-children:focus-within .pc-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .18s ease, visibility 0s linear 0s;
}

/* Dropdown list items */
.pc-dropdown>li {
  list-style: none;
  display: block;
  width: 100%;
}

.pc-dropdown-link {
  display: block;
  padding: .625rem 1rem;
  font-size: .875rem;
  border-radius: .5rem;
  color: var(--pc-foreground);
  transition: background .15s, color .15s;
  white-space: nowrap;
  text-decoration: none;
}

.pc-dropdown-link:hover {
  background: var(--pc-muted);
  color: var(--pc-primary);
}

/* CTA area */
.pc-nav-cta {
  display: none;
  align-items: center;
  gap: .75rem;
}

.pc-nav-vip {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 1.25rem;
  font-size: .8125rem;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid var(--pc-vip-gold);
  color: var(--pc-vip-gold);
  transition: all .3s;
  font-family: 'Alexandria', sans-serif;
}

.pc-nav-vip:hover {
  background: rgba(205, 176, 106, .1);
}

.pc-nav-book {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 1.5rem;
  font-size: .8125rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: all .3s;
  font-family: 'Alexandria', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.is-transparent .pc-nav-book {
  background: #fff;
  color: var(--pc-primary);
}

.is-transparent .pc-nav-book:hover {
  background: rgba(255, 255, 255, .9);
}

.is-scrolled .pc-nav-book,
.is-solid .pc-nav-book {
  background: var(--pc-primary);
  color: var(--pc-primary-fg);
}

.is-scrolled .pc-nav-book:hover,
.is-solid .pc-nav-book:hover {
  background: #1a2f5a;
}

/* Mobile toggle */
.pc-mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  transition: color .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-transparent .pc-mobile-toggle {
  color: #fff;
}

.is-scrolled .pc-mobile-toggle,
.is-solid .pc-mobile-toggle {
  color: var(--pc-foreground);
}

/* Mobile menu overlay */
.pc-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--pc-background);
  display: flex;
  flex-direction: column;
  padding: 5.5rem 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}

.pc-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.pc-mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .125rem;
  margin-top: -2rem;
}

.pc-mobile-nav a {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--pc-foreground);
  padding: .75rem 0;
  display: block;
  transition: color .2s;
}

.pc-mobile-nav a:hover {
  color: var(--pc-gold);
}

.pc-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pc-border);
}

.pc-mobile-row {
  display: flex;
  gap: .75rem;
}

.pc-mobile-row .btn {
  flex: 1;
  font-size: .875rem;
  padding: .875rem 1rem;
}

/* ═══ HERO ═══ */
.pc-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pc-hero-bg {
  position: absolute;
  inset: 0;
}

.pc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.pc-hero-overlay1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18, 32, 64, .95) 0%, rgba(18, 32, 64, .75) 50%, rgba(18, 32, 64, .3) 100%);
}

.pc-hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 32, 64, .6) 0%, rgba(18, 32, 64, .15) 60%, transparent 100%);
}

.pc-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 8rem 1.25rem 6rem;
}

.pc-hero-content {
  max-width: 42rem;
}

.pc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  margin-bottom: 2rem;
}

.pc-hero-badge-dot {
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background: var(--pc-gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.pc-hero-badge span {
  font-size: .6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.pc-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.pc-hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--pc-gold);
}

.pc-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.pc-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.pc-hero-stats {
  display: none;
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  gap: 1rem;
}

.pc-stat-card {
  padding: 1rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
}

.pc-stat-card .val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pc-gold);
}

.pc-stat-card .lbl {
  font-size: .625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* ═══ THREE PATH SELECTOR ═══ */
.pc-three-path {
  padding: 5rem 1rem;
  background: var(--pc-card);
}

.pc-three-path-heading {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.pc-three-path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pc-path-card {
  padding: 2rem;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
}

.pc-path-card:hover {
  border-color: var(--pc-gold);
  box-shadow: 0 10px 40px rgba(196, 165, 90, .12);
}

/* ═══ PATH CARD ICON — circle, properly centered, no overflow clipping ═══ */
.pc-path-icon {
  width: 3.25rem;
  height: 3.25rem;
  min-width: 3.25rem;
  min-height: 3.25rem;
  background: var(--pc-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--pc-gold);
  overflow: visible;
  flex-shrink: 0;
}

.pc-path-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  display: block;
  flex-shrink: 0;
}

.pc-path-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.pc-path-card p {
  font-size: .875rem;
  color: var(--pc-muted-fg);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pc-path-link {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--pc-gold);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  transition: gap .2s;
}

.pc-path-link:hover {
  gap: .625rem;
}

/* ═══ FEATURED SERVICES ═══ */
.pc-services-section {
  padding: 5rem 1rem;
  background: var(--pc-muted);
}

.pc-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pc-section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: .75rem;
}

.pc-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pc-service-card {
  background: #fff;
  border-radius: var(--pc-radius);
  overflow: hidden;
  border: 1px solid var(--pc-border);
  transition: box-shadow .3s, transform .3s;
}

.pc-service-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

.pc-service-card-img {
  height: 11rem;
  overflow: hidden;
}

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

.dl-btn-wa,
.pc-wa-fab,
.btn-whatsapp,
a[href*="wa.me"],
a[href*="whatsapp.com"] {
  text-transform: none !important;
}

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

.pc-service-card-body {
  padding: 1.25rem;
}

.pc-service-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .375rem;
}

.pc-service-card-body p {
  font-size: .8125rem;
  color: var(--pc-muted-fg);
  line-height: 1.6;
  margin-bottom: .875rem;
}

.pc-service-card-link {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--pc-gold);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  transition: gap .2s;
}

.pc-service-card-link:hover {
  gap: .625rem;
}

/* ═══ WHY PRAGUE CLINICS ═══ */
.pc-why {
  padding: 5rem 1rem;
  background: var(--pc-background);
}

.pc-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.pc-why h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.pc-divider-line {
  width: 4rem;
  height: 1px;
  background: var(--pc-gold);
  margin-bottom: 2rem;
}

.pc-why-desc {
  color: var(--pc-muted-fg);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.pc-check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pc-check-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
}

.pc-check-item svg {
  color: var(--pc-gold);
  flex-shrink: 0;
  margin-top: .125rem;
}

.pc-mission-card {
  background: var(--pc-primary);
  border-radius: 1rem;
  padding: 2rem;
  color: var(--pc-primary-fg);
  position: relative;
  overflow: hidden;
}

.pc-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: rgba(196, 165, 90, .05);
  border-radius: 50%;
  transform: translate(3rem, -3rem);
}

.pc-mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.pc-mission-quote {
  border-left: 2px solid var(--pc-gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.pc-mission-quote p {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(250, 249, 246, .9);
}

.pc-mission-quote small {
  display: block;
  margin-top: .75rem;
  font-size: .8125rem;
  color: rgba(250, 249, 246, .5);
}

.pc-mission-founders {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 249, 246, .1);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.pc-mission-founders img {
  width: 5rem;
  height: 5rem;
  border-radius: .75rem;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid rgba(196, 165, 90, .4);
}

.pc-mission-founders strong {
  font-size: .875rem;
  display: block;
  margin-bottom: .25rem;
}

.pc-mission-founders span {
  font-size: .75rem;
  color: rgba(250, 249, 246, .5);
}

.pc-mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 249, 246, .1);
  position: relative;
  z-index: 1;
}

.pc-mission-stat {
  text-align: center;
}

.pc-mission-stat .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pc-gold);
}

.pc-mission-stat .lbl {
  font-size: .5625rem;
  color: rgba(250, 249, 246, .5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .25rem;
}

/* ═══ DOCTOR PREVIEW ═══ */
.pc-doctors {
  padding: 5rem 1rem;
  background: var(--pc-muted);
}

.pc-doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto 2.5rem;
}

.pc-doctor-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
}

.pc-doctor-photo {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--pc-border);
}

.pc-doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.pc-doctor-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.pc-doctor-specialty {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--pc-gold);
  margin-bottom: 1rem;
}

.pc-doctors-cta {
  text-align: center;
}

/* ═══ PREVENTIVE PACKAGES TEASER ═══ */
.pc-packages {
  padding: 5rem 1rem;
  background: var(--pc-background);
}

.pc-packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto 2.5rem;
}

.pc-pkg-card {
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 1.75rem;
  background: #fff;
  transition: box-shadow .3s;
}

.pc-pkg-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.pc-pkg-card.featured {
  background: var(--pc-primary);
  color: var(--pc-primary-fg);
  border-color: transparent;
}

.pc-pkg-badge {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pc-gold);
  display: block;
  margin-bottom: .5rem;
}

.pc-pkg-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.pc-pkg-for {
  font-size: .8125rem;
  color: var(--pc-muted-fg);
  margin-bottom: 1rem;
}

.pc-pkg-card.featured .pc-pkg-for {
  color: rgba(250, 249, 246, .6);
}

.pc-pkg-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pc-primary);
  margin-bottom: 1.25rem;
}

.pc-pkg-card.featured .pc-pkg-price {
  color: var(--pc-gold);
}

.pc-pkg-desc {
  font-size: .875rem;
  line-height: 1.55;
  margin-bottom: .75rem;
  color: var(--pc-muted-fg);
}

.pc-pkg-card.featured .pc-pkg-desc {
  color: rgba(250, 249, 246, .75);
}

.pc-section-desc {
  font-size: 1rem;
  color: var(--pc-muted-fg);
  max-width: 38rem;
  margin: .75rem auto 0;
  line-height: 1.65;
  text-align: center;
}

/* ═══ HOMECARE TEASER ═══ */
.pc-homecare {
  padding: 5rem 1rem;
  background: var(--pc-primary);
}

.pc-homecare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.pc-homecare h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1.25rem;
}

.pc-homecare-desc {
  color: rgba(250, 249, 246, .7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pc-homecare-bullets {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.pc-homecare-bullet {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  color: rgba(250, 249, 246, .85);
}

.pc-homecare-bullet::before {
  content: '';
  width: .375rem;
  height: .375rem;
  background: var(--pc-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.pc-homecare-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.pc-homecare-img img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  max-height: 30rem;
}

/* ═══ GOOGLE REVIEWS ═══ */
.pc-reviews {
  padding: 5rem 1rem;
  background: var(--pc-muted);
}

.pc-reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pc-stars {
  display: flex;
  gap: .25rem;
  color: #FBBC04;
}

.pc-reviews-count {
  font-size: .875rem;
  color: var(--pc-muted-fg);
}

.pc-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto 2.5rem;
}

.pc-review-card {
  background: #fff;
  border-radius: var(--pc-radius);
  padding: 1.75rem;
  border: 1px solid var(--pc-border);
}

.pc-review-header {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1rem;
}

.pc-review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--pc-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pc-gold);
  font-size: 1rem;
  flex-shrink: 0;
  font-family: 'Alexandria', sans-serif;
}

.pc-review-name {
  font-weight: 700;
  font-size: .9375rem;
  margin-bottom: .1875rem;
}

.pc-review-text {
  font-size: .875rem;
  color: var(--pc-muted-fg);
  line-height: 1.7;
}

.pc-reviews-cta {
  text-align: center;
}

/* ═══ INSURANCE STRIP ═══ */
.pc-insurance {
  padding: 4rem 1rem;
  background: var(--pc-card);
  overflow: hidden;
}

.pc-insurance-ticker {
  overflow: hidden;
  position: relative;
}

/* The scroll wrapper contains both the original and cloned tracks side by side */
.pc-insurance-scroll {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 3rem;
}

.pc-insurance-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-shrink: 0;
}

.pc-insurance-track img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .5;
  transition: filter .3s, opacity .3s;
}

.pc-insurance-track img:hover {
  filter: none;
  opacity: 1;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll-logos {
  animation: scroll-logos 35s linear infinite;
}

.animate-scroll-logos:hover {
  animation-play-state: paused;
}

/* ═══ LOCATION & HOURS ═══ */
.pc-location {
  padding: 5rem 1rem;
  background: var(--pc-background);
}

.pc-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pc-location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.pc-location-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 1rem;
  padding: 2rem;
}

.pc-location-card h2 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}

.pc-location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.pc-location-row {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  font-size: .9375rem;
}

.pc-location-row svg {
  color: var(--pc-gold);
  flex-shrink: 0;
  margin-top: .125rem;
}

.pc-location-row a:hover {
  color: var(--pc-gold);
}

.pc-map-embed {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--pc-border);
  height: 450px;
}

.pc-map-embed iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}

/* ═══ FINAL CTA ═══ */
.pc-final-cta {
  padding: 5rem 1rem;
  background: var(--pc-primary);
  text-align: center;
}

.pc-final-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.pc-final-cta p {
  color: rgba(250, 249, 246, .65);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pc-final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
}

/* ═══ FOOTER ═══ */
.pc-footer {
  background: var(--pc-primary);
  color: var(--pc-primary-fg);
  padding: 5rem 1rem 0;
}

.pc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pc-footer-brand img {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.pc-footer-brand p {
  font-size: .875rem;
  color: rgba(250, 249, 246, .6);
  line-height: 1.7;
}

.pc-footer-col h4 {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pc-gold);
  margin-bottom: 1.25rem;
}

.pc-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.pc-footer-col a {
  font-size: .875rem;
  color: rgba(250, 249, 246, .6);
  transition: color .2s;
}

.pc-footer-col a:hover {
  color: var(--pc-gold);
}

.pc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.pc-footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(250, 249, 246, .6);
}

.pc-footer-contact-row svg {
  color: rgba(196, 165, 90, .6);
  flex-shrink: 0;
  margin-top: .125rem;
}

.pc-footer-contact-row a:hover {
  color: var(--pc-gold);
}

.pc-footer-bottom {
  max-width: 1280px;
  margin: 3.5rem auto 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(250, 249, 246, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  color: rgba(250, 249, 246, .4);
}

.pc-footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.pc-footer-bottom-links a:hover {
  color: var(--pc-gold);
}

/* ═══ FLOATING ELEMENTS ═══ */
/* ═══ STICKY MOBILE CTA — hidden on desktop, visible only on mobile ═══ */
.pc-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--pc-card);
  border-top: 1px solid var(--pc-border);
  padding: .875rem 1rem;
  display: none;
  gap: .75rem;
}

.pc-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: .75rem;
  border-radius: .625rem;
  font-size: .875rem;
  font-weight: 600;
  font-family: 'Alexandria', sans-serif;
}

.pc-wa-fab {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}

.pc-wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

/* ═══ SERVICE PAGE ═══ */
.pc-svc-hero {
  padding: 8rem 1rem 4rem;
  background: var(--pc-primary);
  position: relative;
  overflow: hidden;
}

.pc-svc-hero-bg {
  position: absolute;
  inset: 0;
  opacity: .15;
}

.pc-svc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-svc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.pc-svc-hero-text .pc-label {
  color: rgba(196, 165, 90, .9);
}

.pc-svc-hero-text h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1.25rem;
}

.pc-svc-hero-text p {
  color: rgba(250, 249, 246, .75);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pc-svc-hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .625rem;
  margin-bottom: 2rem;
}

.pc-svc-hero-point {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(250, 249, 246, .85);
}

.pc-svc-hero-point svg {
  color: var(--pc-gold);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.pc-svc-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.pc-svc-hero-img img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  object-fit: cover;
  max-height: 30rem;
}

.pc-trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--pc-border);
  padding: 1.25rem 1rem;
}

.pc-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.pc-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--pc-foreground);
}

.pc-trust-item svg {
  color: var(--pc-emerald);
  flex-shrink: 0;
}

.pc-what-we-offer {
  padding: 5rem 1rem;
  background: #fff;
}

.pc-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 2rem auto 0;
}

.pc-offer-card {
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 1.5rem;
  transition: border-color .3s, box-shadow .3s;
}

.pc-offer-card:hover {
  border-color: var(--pc-gold);
  box-shadow: 0 8px 30px rgba(196, 165, 90, .1);
}

.pc-offer-card:hover h3 {
  color: var(--pc-gold);
}

.pc-offer-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  transition: color .2s;
}

.pc-offer-card p {
  font-size: .875rem;
  color: var(--pc-muted-fg);
  line-height: 1.6;
}

.pc-why-svc {
  padding: 5rem 1rem;
  background: var(--pc-muted);
}

.pc-why-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.pc-why-svc img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.pc-doctors-svc {
  padding: 5rem 1rem;
  background: #fff;
}

.pc-doctors-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 2rem auto 0;
}

.pc-doctor-svc-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
}

.pc-doctor-svc-photo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.pc-doctor-svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.pc-doctor-svc-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.pc-doctor-svc-info .spec {
  font-size: .8125rem;
  color: var(--pc-gold);
  font-weight: 600;
  margin-bottom: .25rem;
}

.pc-doctor-svc-info .exp {
  font-size: .75rem;
  color: var(--pc-muted-fg);
  margin-bottom: .75rem;
}

.pc-faq {
  padding: 5rem 1rem;
  background: var(--pc-muted);
}

.pc-faq-list {
  max-width: 56rem;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.pc-faq-item {
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  background: #fff;
  overflow: hidden;
}

.pc-faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
}

.pc-faq-item summary::-webkit-details-marker {
  display: none;
}

.pc-faq-chevron {
  width: .75rem;
  height: .75rem;
  border-right: 2px solid var(--pc-gold);
  border-bottom: 2px solid var(--pc-gold);
  transform: rotate(45deg);
  transition: transform .2s;
  flex-shrink: 0;
}

.pc-faq-item[open] .pc-faq-chevron {
  transform: rotate(-135deg);
}

.pc-faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem;
  color: var(--pc-muted-fg);
  line-height: 1.7;
}

.pc-svc-cta {
  padding: 5rem 1rem;
  background: var(--pc-primary);
  text-align: center;
}

.pc-svc-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 1rem;
}

.pc-svc-cta p {
  color: rgba(250, 249, 246, .65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.pc-svc-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
}

/* ═══ TEAM PAGE ═══ */
.pc-team-hero {
  padding: 5rem 1rem 4rem;
  background: var(--pc-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pc-team-hero::before {
  content: '';
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(196, 165, 90, .05);
  border-radius: 50%;
  pointer-events: none;
}

.pc-team-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #fff;
  margin-bottom: 1.25rem;
}

.pc-team-hero p {
  color: rgba(250, 249, 246, .6);
  font-size: 1.0625rem;
  max-width: 40rem;
  margin: .75rem auto 0;
}

.pc-team-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
  font-family: 'Alexandria', sans-serif;
}

.pc-filter-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pc-muted-fg);
  display: flex;
  align-items: center;
  gap: .375rem;
}

.pc-team-filters select {
  font-family: 'Alexandria', sans-serif;
  font-size: .8125rem;
  background: var(--pc-muted);
  border: 1px solid rgba(237, 233, 225, .5);
  border-radius: .5rem;
  padding: .5rem .875rem;
  color: var(--pc-foreground);
  cursor: pointer;
}

.pc-team-filters select:focus {
  outline: none;
  border-color: rgba(196, 165, 90, .4);
}

.pc-clear-filter {
  font-size: .6875rem;
  color: var(--pc-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Alexandria', sans-serif;
}

.pc-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pc-team-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow .3s;
}

.pc-team-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.pc-team-card-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: .75rem;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: var(--pc-muted);
  max-width: 10rem;
}

.pc-team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform .7s ease;
  display: block;
}

.pc-team-card:hover .pc-team-card-photo img {
  transform: scale(1.05);
}

.pc-team-card-flip img {
  transform: scaleX(-1);
}

.pc-team-card:hover .pc-team-card-flip img {
  transform: scaleX(-1) scale(1.05);
}

.pc-team-card-badge {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  padding: .2rem .625rem;
  border-radius: 9999px;
  background: rgba(18, 32, 64, .8);
  backdrop-filter: blur(4px);
  font-size: .625rem;
  font-weight: 700;
  color: #fff;
}

.pc-team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
  line-height: 1.3;
}

.pc-team-card .spec {
  font-size: .8125rem;
  color: var(--pc-gold);
  font-weight: 600;
  margin-bottom: .625rem;
}

.pc-team-card .about-text {
  font-size: .8125rem;
  color: var(--pc-muted-fg);
  line-height: 1.6;
  margin-bottom: .75rem;
  text-align: left;
}

.pc-team-card .edu,
.pc-team-card .lang {
  font-size: .6875rem;
  color: var(--pc-muted-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  margin-bottom: .25rem;
}

/* ═══ PREVENTIVE PACKAGES PAGE ═══ */
.pc-preventive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 3rem auto 0;
}

.pc-pkg-full {
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 2rem;
  background: #fff;
}

.pc-pkg-full.featured {
  background: var(--pc-primary);
  border-color: var(--pc-primary);
  color: var(--pc-primary-fg);
}

.pc-pkg-cat {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pc-gold);
  margin-bottom: .625rem;
  display: block;
}

.pc-pkg-full h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: .375rem;
}

.pc-pkg-audience {
  font-size: .8125rem;
  color: var(--pc-muted-fg);
  margin-bottom: 1.5rem;
}

.pc-pkg-full.featured .pc-pkg-audience {
  color: rgba(250, 249, 246, .6);
}

.pc-pkg-full-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pc-primary);
  margin-bottom: 1.5rem;
}

.pc-pkg-full.featured .pc-pkg-full-price {
  color: var(--pc-gold);
}

.pc-pkg-includes {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: 2rem;
}

.pc-pkg-includes li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
}

.pc-pkg-includes li::before {
  content: '';
  width: .375rem;
  height: .375rem;
  background: var(--pc-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══ BOOKING WIZARD ═══ */
.pc-booking {
  padding: 7rem 1rem 5rem;
  background: var(--pc-muted);
  min-height: 100vh;
}

.pc-booking-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.pc-booking-progress {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 3rem;
}

.pc-booking-step-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
  transition: all .3s;
  font-family: 'Alexandria', sans-serif;
  flex-shrink: 0;
}

.pc-booking-step-dot.active {
  background: var(--pc-primary);
  color: #fff;
}

.pc-booking-step-dot.done {
  background: var(--pc-gold);
  color: #fff;
}

.pc-booking-step-dot.pending {
  background: var(--pc-border);
  color: var(--pc-muted-fg);
}

.pc-booking-line {
  flex: 1;
  height: 1px;
  background: var(--pc-border);
}

.pc-booking-panel {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--pc-border);
  display: none;
}

.pc-booking-panel.active {
  display: block;
}

.pc-booking-panel h2 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.pc-booking-panel .sub {
  font-size: .9375rem;
  color: var(--pc-muted-fg);
  margin-bottom: 1.5rem;
}

.pc-option-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pc-option-card {
  border: 2px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: left;
  background: transparent;
  width: 100%;
  font-family: 'Alexandria', sans-serif;
}

.pc-option-card.selected,
.pc-option-card:hover {
  border-color: var(--pc-gold);
  background: var(--pc-gold-light);
}

.pc-option-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .375rem;
}

.pc-option-card p {
  font-size: .875rem;
  color: var(--pc-muted-fg);
}

.pc-field {
  margin-bottom: 1.25rem;
}

.pc-field label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .375rem;
}

.pc-field input,
.pc-field select,
.pc-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--pc-border);
  border-radius: .625rem;
  font-family: 'Alexandria', sans-serif;
  font-size: .9375rem;
  color: var(--pc-foreground);
  background: #fff;
  transition: border-color .2s;
}

.pc-field input:focus,
.pc-field select:focus,
.pc-field textarea:focus {
  outline: none;
  border-color: var(--pc-gold);
  box-shadow: 0 0 0 3px rgba(196, 165, 90, .1);
}

.pc-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.pc-booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.pc-form-msg {
  padding: 1rem 1.25rem;
  border-radius: .625rem;
  font-size: .875rem;
  font-weight: 600;
  display: none;
  margin-top: 1rem;
}

.pc-form-msg.success {
  background: rgba(29, 138, 94, .1);
  color: var(--pc-emerald);
}

.pc-form-msg.error {
  background: rgba(239, 68, 68, .1);
  color: #dc2626;
}

/* ═══ CONTACT PAGE ═══ */
.pc-contact {
  padding: 3rem 1rem 4rem;
  background: var(--pc-muted);
}

.pc-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.pc-contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pc-contact-info-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 1.25rem;
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}

.pc-contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--pc-gold-light);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-gold);
  flex-shrink: 0;
}

.pc-contact-info-text h3 {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.pc-contact-info-text p,
.pc-contact-info-text a {
  font-size: .875rem;
  color: var(--pc-muted-fg);
}

.pc-contact-info-text a:hover {
  color: var(--pc-gold);
}

.pc-contact-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.25rem;
}

.pc-contact-btns .btn {
  justify-content: center;
}

/* Map — full-width below the contact section */
.pc-map-full {
  margin-top: 3rem;
}

.pc-map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--pc-border);
  min-height: 22rem;
}

.pc-map-wrapper iframe {
  width: 100%;
  height: 22rem;
  display: block;
  border: 0;
}


/* ═══ 404 PAGE ═══ */
.pc-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.pc-404-inner {
  max-width: 32rem;
}

.pc-404 .num {
  font-size: 8rem;
  font-weight: 700;
  color: var(--pc-gold);
  line-height: 1;
  font-family: 'Alexandria', sans-serif;
}

.pc-404 h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pc-404 p {
  color: var(--pc-muted-fg);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ═══ ANIMATIONS ═══ */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] {
  transition-delay: .1s;
}

[data-animate][data-delay="2"] {
  transition-delay: .2s;
}

[data-animate][data-delay="3"] {
  transition-delay: .3s;
}

[data-animate][data-delay="4"] {
  transition-delay: .4s;
}

[data-animate][data-delay="5"] {
  transition-delay: .5s;
}

[data-animate][data-delay="6"] {
  transition-delay: .6s;
}



/* ════════════════════════════════════════════
   PRIVACY POLICY / TERMS PAGE
   ════════════════════════════════════════════ */
.pc-legal-hero {
  background: var(--pc-primary);
  padding: 7rem 1rem 3rem;
  text-align: center;
}

.pc-legal-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.pc-legal-hero p {
  color: rgba(250, 249, 246, .65);
  margin: 1rem auto 0;
  max-width: 36rem;
}

.pc-legal-body {
  max-width: 52rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.pc-legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 .75rem;
  color: var(--pc-primary);
}

.pc-legal-body p,
.pc-legal-body li {
  font-size: .9375rem;
  color: var(--pc-muted-fg);
  line-height: 1.8;
  margin-bottom: .75rem;
}

.pc-legal-body ul {
  padding-left: 1.5rem;
}

.pc-legal-body ul li {
  list-style: disc;
}

.pc-legal-last-updated {
  font-size: .75rem;
  color: var(--pc-muted-fg);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--pc-border);
}

/* ════════════════════════════════════════════
   BOOKING PAGE — TOP PADDING FIX
   ════════════════════════════════════════════ */
.pc-booking {
  padding: 6rem 1rem 5rem;
  background: var(--pc-muted);
  min-height: 80vh;
}

.pc-booking-inner {
  max-width: 48rem;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   MOBILE NAV MENU — Light cream overlay (matches Lovable reference)
   ════════════════════════════════════════════ */
.pc-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pc-background);
  /* #FAF9F6 cream — fully opaque */
  z-index: 9998;
  flex-direction: column;
  padding: 5rem 2rem 6rem;
  /* extra bottom for sticky CTA bar */
  overflow-y: auto;
}

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

/* Nav links — dark text on cream background */
.pc-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pc-mobile-nav a {
  color: var(--pc-foreground);
  /* #1E2435 dark navy */
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid var(--pc-border);
  /* #EDE9E1 subtle divider */
  display: block;
  text-decoration: none;
  transition: color .2s;
}

.pc-mobile-nav a:hover,
.pc-mobile-nav a.active {
  color: var(--pc-gold);
}

/* Close button — dark icon on cream */
.pc-mobile-close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  background: none;
  border: none;
  color: var(--pc-foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: .5rem;
  line-height: 1;
}

.pc-mobile-close:hover {
  color: var(--pc-gold);
}

/* CTA buttons inside the menu */
.pc-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}

.pc-mobile-ctas .btn {
  width: 100%;
  justify-content: center;
}

.pc-mobile-row {
  display: flex;
  gap: .75rem;
  margin-top: 0;
}

.pc-mobile-row .btn {
  flex: 1;
  justify-content: center;
  font-size: .875rem;
}

/* ════════════════════════════════════════════
   FOOTER — QUICK LINKS SPACING
   ════════════════════════════════════════════ */
.pc-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-footer-col ul li {
  margin-bottom: .5rem;
}

.pc-footer-col ul li a {
  font-size: .875rem;
  color: rgba(250, 249, 246, .55);
  transition: color .2s;
  text-decoration: none;
}

.pc-footer-col ul li a:hover {
  color: var(--pc-gold);
}

/* ════════════════════════════════════════════
   GLOBAL — NO HORIZONTAL OVERFLOW
   ════════════════════════════════════════════ */
body {
  overflow-x: hidden;
}

.pc-header {
  overflow: visible;
}

/* keep dropdown visible */

/* ════════════════════════════════════════════
   ABOUT PAGE — Matching reference Lovable layout
   ════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────── */
.pc-about-hero {
  background: var(--pc-primary);
  padding: 8rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pc-about-hero::before {
  content: '';
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 28rem;
  height: 28rem;
  background: rgba(196, 165, 90, .04);
  border-radius: 50%;
  pointer-events: none;
}

.pc-about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pc-about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: .5rem 0 1.25rem;
}

.pc-about-hero p {
  font-size: clamp(.9375rem, 2vw, 1.0625rem);
  color: rgba(250, 249, 246, .7);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

.pc-divider-line {
  width: 3rem;
  height: 2px;
  background: var(--pc-gold);
  margin: 1.25rem auto;
  border-radius: 2px;
  display: block;
}

.pc-divider-light {
  background: rgba(196, 165, 90, .5);
}

/* ── Why We Exist ─────────────────────────── */
.pc-about-why {
  padding: 6rem 1.5rem;
  background: var(--pc-background);
}

.pc-about-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.pc-about-why-text h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--pc-primary);
  margin: .25rem 0;
  line-height: 1.2;
}

.pc-about-why-text .pc-divider-line {
  margin: 1.25rem 0;
}

.pc-about-why-text p {
  font-size: .9375rem;
  color: var(--pc-muted-fg);
  line-height: 1.75;
  margin-bottom: 1.125rem;
}

.pc-about-why-text p:last-child {
  margin-bottom: 0;
}

/* Feature cards — 2×2 grid */
.pc-about-why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pc-about-feat-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}

.pc-about-feat-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  transform: translateY(-2px);
}

.pc-about-feat-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--pc-gold);
  margin-bottom: .75rem;
}

.pc-about-feat-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--pc-gold);
}

.pc-about-feat-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--pc-primary);
  margin-bottom: .375rem;
  line-height: 1.3;
}

.pc-about-feat-card p {
  font-size: .8125rem;
  color: var(--pc-muted-fg);
  line-height: 1.65;
}

/* Desktop: side-by-side */
@media (min-width: 900px) {
  .pc-about-why-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* ── Founders Section ─────────────────────── */
.pc-about-founders {
  padding: 6rem 1.5rem;
  background: var(--pc-muted);
}

.pc-about-founders-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.pc-about-founders-photo {
  width: 100%;
  max-width: 480px;
  max-height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: 1.25rem;
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.pc-about-founders-text .pc-divider-line {
  margin: 1.25rem 0;
}

.pc-about-founders-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--pc-primary);
  line-height: 1.2;
  margin: .25rem 0;
}

.pc-about-founders-text p {
  font-size: .9375rem;
  color: var(--pc-muted-fg);
  line-height: 1.75;
  margin-bottom: 1.125rem;
}

.pc-about-founders-text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .pc-about-founders-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* ── Stats Bar ────────────────────────────── */
.pc-about-stats-bar {
  background: var(--pc-primary);
  padding: 4rem 1.5rem;
}

.pc-about-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  text-align: center;
}

.pc-about-stat-item {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.pc-about-stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--pc-gold);
  line-height: 1;
}

.pc-about-stat-lbl {
  font-size: .6875rem;
  font-weight: 600;
  color: rgba(250, 249, 246, .55);
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (min-width: 640px) {
  .pc-about-stats-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Values ───────────────────────────────── */
.pc-about-values {
  padding: 6rem 1.5rem;
  background: var(--pc-background);
}

.pc-about-values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pc-about-values .pc-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pc-about-values .pc-section-header h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--pc-primary);
  margin-top: .5rem;
}

.pc-about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pc-about-value-card {
  background: #fff;
  padding: 1.75rem 2rem;
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  transition: box-shadow .2s, transform .2s;
}

.pc-about-value-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
  transform: translateY(-2px);
}

.pc-about-value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pc-primary);
  margin-bottom: .5rem;
}

.pc-about-value-card p {
  font-size: .875rem;
  color: var(--pc-muted-fg);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .pc-about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── CTA ──────────────────────────────────── */
.pc-about-cta {
  padding: 6rem 1.5rem;
  background: var(--pc-muted);
  text-align: center;
}

.pc-about-cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.pc-about-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--pc-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.pc-about-cta p {
  font-size: .9375rem;
  color: var(--pc-muted-fg);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ════════════════════════════════════════════ */
/* Hidden on desktop, shown only on mobile */
.pc-sticky-cta {
  display: none !important;
}

@media (max-width: 768px) {
  .pc-sticky-cta {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0.625rem 0.875rem !important;
    /* breathing room from edges */
    gap: 0.625rem !important;
    /* gap between the two buttons */
    background: #fff !important;
    border-top: 1px solid #EDE9E1;
  }

  .pc-sticky-cta .btn {
    flex: 1;
    border-radius: 9999px !important;
    /* PILL shape — matches Lovable */
    justify-content: center;
    padding: 0.875rem 1rem !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
}

/* ════════════════════════════════════════════
   SECTION 1 — HOW CAN WE HELP YOU (pchp)
   ════════════════════════════════════════════ */
.pchp-section {
  background: #FAF9F6;
  padding: 5rem 1.5rem;
}

.pchp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pchp-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pchp-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #122040;
  margin-bottom: .75rem;
}

.pchp-header p {
  font-size: 1rem;
  color: #797D87;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.pchp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  overflow: visible;
}

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

/* Card — position:relative so icon can be anchored to it */
.pchp-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  overflow: visible;
  border: 1px solid #EDE9E1;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}

.pchp-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .11);
  transform: translateY(-3px);
}

/* Image wrapper — overflow:hidden clips the photo only; icon escapes via positioned parent */
.pchp-card-img {
  height: 200px;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}

.pchp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.pchp-card:hover .pchp-card-img img {
  transform: scale(1.04);
}

/* Icon circle — direct child of .pchp-card (overflow:visible)
   Centered exactly on the image/body boundary
   48px circle, center at 200px from card top = top: 176px = calc(200px - 24px) */
.pchp-card-icon {
  position: absolute;
  top: calc(200px - 24px);
  left: 1.25rem;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
  z-index: 10;
  flex-shrink: 0;
}

.pchp-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #122040;
  display: block;
  flex-shrink: 0;
  fill: none;
}

/* Card body — top padding = 24px (half icon) + 12px breathing room = ~2.25rem */
.pchp-card-body {
  padding: 2.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pchp-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #122040;
  margin-bottom: .625rem;
}

.pchp-card-body p {
  font-size: .9375rem;
  color: #797D87;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.pchp-link {
  font-size: .875rem;
  font-weight: 700;
  color: #C4A55A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: auto;
}

.pchp-link:hover {
  color: #a88940;
}

/* ════════════════════════════════════════════
   SECTION 2 — PREVENTIVE HEALTH PACKAGES (pcpkg)
   ════════════════════════════════════════════ */
.pcpkg-section {
  background: #FAF9F6;
  padding: 5rem 1.5rem;
}

.pcpkg-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pcpkg-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pcpkg-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C4A55A;
  display: block;
  margin-bottom: .75rem;
}

.pcpkg-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: #122040;
  margin-bottom: .75rem;
}

.pcpkg-divider {
  width: 3rem;
  height: 2px;
  background: #C4A55A;
  margin: 1rem auto;
  border-radius: 2px;
}

.pcpkg-header p {
  font-size: 1rem;
  color: #797D87;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.pcpkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

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

.pcpkg-card {
  background: #fff;
  border: 1px solid #EDE9E1;
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}

.pcpkg-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, .09);
  transform: translateY(-2px);
}

.pcpkg-card.featured {
  background: #122040;
  border-color: #122040;
  margin-top: -1rem;
}

@media(max-width:1023px) {
  .pcpkg-card.featured {
    margin-top: 0;
  }
}

.pcpkg-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #C4A55A;
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: .375rem .875rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pcpkg-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #122040;
  padding-top: .5rem;
}

.pcpkg-card.featured h3 {
  color: #fff;
}

.pcpkg-desc {
  font-size: .875rem;
  color: #797D87;
  line-height: 1.6;
}

.pcpkg-card.featured .pcpkg-desc {
  color: rgba(250, 249, 246, .7);
}

.pcpkg-for {
  font-size: .75rem;
  font-weight: 700;
  color: #C4A55A;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pcpkg-items {
  list-style: none;
  padding: 0;
  margin: .25rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.pcpkg-items li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: #797D87;
  line-height: 1.5;
}

.pcpkg-card.featured .pcpkg-items li {
  color: rgba(250, 249, 246, .8);
}

.pcpkg-items li svg {
  flex-shrink: 0;
  margin-top: .1rem;
  stroke: #C4A55A;
}

.pcpkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  padding: .875rem;
  background: #122040;
  color: #fff;
  border-radius: .75rem;
  font-size: .9rem;
  font-weight: 700;
  font-family: 'Alexandria', sans-serif;
  text-decoration: none;
  margin-top: auto;
  transition: background .2s;
}

.pcpkg-btn:hover {
  background: #1a2f5a;
  color: #fff;
}

.pcpkg-card.featured .pcpkg-btn {
  background: #C4A55A;
}

.pcpkg-card.featured .pcpkg-btn:hover {
  background: #a88940;
}

.pcpkg-footer {
  text-align: center;
}

.pcpkg-view-all {
  font-size: .9375rem;
  font-weight: 700;
  color: #122040;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border: 1px solid #EDE9E1;
  padding: .75rem 1.75rem;
  border-radius: 9999px;
  transition: border-color .2s, color .2s;
}

.pcpkg-view-all:hover {
  border-color: #C4A55A;
  color: #C4A55A;
}

/* ════════════════════════════════════════════
   SECTION 3 — CONCIERGE MEDICINE (pccc)
   ════════════════════════════════════════════ */
.pccc-section {
  background: #fff;
  padding: 5rem 1.5rem;
}

.pccc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media(min-width:1024px) {
  .pccc-container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.pccc-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C4A55A;
  display: block;
  margin-bottom: .75rem;
}

.pccc-text h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #122040;
  line-height: 1.15;
  margin-bottom: .5rem;
}

.pccc-divider {
  width: 2.5rem;
  height: 2px;
  background: #C4A55A;
  border-radius: 2px;
  margin: 1rem 0 1.25rem;
}

.pccc-text p {
  font-size: .9688rem;
  color: #797D87;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.pccc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1rem;
  margin-bottom: 2rem;
}

.pccc-feature {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: #122040;
  background: #FAF9F6;
  border: 1px solid #EDE9E1;
  border-radius: .625rem;
  padding: .75rem 1rem;
  line-height: 1.4;
}

.pccc-feat-icon {
  flex-shrink: 0;
}

.pccc-feat-icon svg {
  stroke: #C4A55A;
  display: block;
  width: 18px;
  height: 18px;
}

.pccc-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.pccc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  background: #122040;
  color: #fff;
  border-radius: 9999px;
  font-size: .9rem;
  font-weight: 700;
  font-family: 'Alexandria', sans-serif;
  text-decoration: none;
  transition: background .2s;
}

.pccc-btn-primary:hover {
  background: #1a2f5a;
  color: #fff;
}

.pccc-btn-primary svg {
  stroke: #fff;
}

.pccc-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 9999px;
  font-size: .9rem;
  font-weight: 700;
  font-family: 'Alexandria', sans-serif;
  text-decoration: none;
  transition: background .2s;
}

.pccc-btn-wa:hover {
  background: #1fb558;
  color: #fff;
}

.pccc-btn-wa svg {
  stroke: #fff;
}

.pccc-images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pccc-img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  display: block;
  height: 240px;
}

@media(min-width:1024px) {
  .pccc-img {
    height: 260px;
  }
}

/* ════════════════════════════════════════════
   SECTION 4 — INSURANCE & PARTNERS (pcins)
   ════════════════════════════════════════════ */
.pcins-section {
  background: #FAF9F6;
  padding: 4.5rem 1.5rem;
}

.pcins-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pcins-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pcins-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C4A55A;
  display: block;
  margin-bottom: .75rem;
}

.pcins-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #122040;
  margin-bottom: .75rem;
}

.pcins-header p {
  font-size: .9375rem;
  color: #797D87;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.pcins-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 1rem 0;
}

.pcins-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
}

.pcins-logo img {
  height: 2.5rem;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  display: block;
  transition: filter .3s, opacity .3s;
}

.pcins-logo img:hover {
  filter: none;
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   SERVICE PAGES — Complete Design System
   Applies to ALL service pages via service-page-layout.php
   ════════════════════════════════════════════════════════════ */

/* ─── ① Hero Section ─── */
.pc-svc-hero {
  position: relative;
  background: var(--pc-primary);
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}

/* Full-bleed background image with dark overlay */
.pc-svc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pc-svc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.2;
  display: block;
}

/* Inner two-column layout */
.pc-svc-hero .container-wide {
  position: relative;
  z-index: 1;
  width: 100%;
}

.pc-svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left: text column */
.pc-svc-hero-text {
  max-width: 600px;
}

.pc-svc-hero-text .pc-label {
  color: var(--pc-gold);
  margin-bottom: 0.75rem;
}

.pc-svc-hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.pc-svc-hero-text>p {
  font-size: 1.0625rem;
  color: rgba(250, 249, 246, 0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* Key points checklist */
.pc-svc-hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.5rem;
  margin-bottom: 2.25rem;
}

.pc-svc-hero-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(250, 249, 246, 0.85);
  font-weight: 500;
}

.pc-svc-hero-point svg {
  stroke: var(--pc-gold);
  flex-shrink: 0;
}

/* CTA buttons */
.pc-svc-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Right: hero image (hidden on mobile, shown on desktop) */
.pc-svc-hero-img {
  display: none;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/3;
}

.pc-svc-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─── ② Trust Bar ─── */
.pc-trust-bar {
  background: var(--pc-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
}

.pc-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

.pc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(250, 249, 246, 0.75);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pc-trust-item svg {
  stroke: var(--pc-gold);
  flex-shrink: 0;
}

/* ─── ③ What We Offer ─── */
.pc-what-we-offer {
  padding: 6rem 1.5rem;
  background: var(--pc-background);
}

.pc-what-we-offer .pc-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pc-section-header .pc-label {
  margin-bottom: 0.625rem;
}

.pc-section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--pc-primary);
  line-height: 1.15;
  margin-top: 0.25rem;
}

/* 3-column grid of offer cards */
.pc-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pc-offer-card {
  background: #ffffff;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 2rem 2.25rem;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.pc-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--pc-gold);
  border-radius: var(--pc-radius) 0 0 var(--pc-radius);
  opacity: 0;
  transition: opacity 0.25s;
}

.pc-offer-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.pc-offer-card:hover::before {
  opacity: 1;
}

.pc-offer-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--pc-primary);
  margin-bottom: 0.625rem;
}

.pc-offer-card p {
  font-size: 0.9375rem;
  color: var(--pc-muted-fg);
  line-height: 1.7;
}

/* ─── ④ Why Choose Us ─── */
.pc-why-svc {
  padding: 6rem 1.5rem;
  background: var(--pc-muted);
}

.pc-why-svc-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.pc-why-svc-grid .pc-label {
  margin-bottom: 0.625rem;
}

.pc-why-svc-grid h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--pc-primary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.pc-why-svc-grid img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4/3;
  display: block;
  border: 1px solid var(--pc-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Checklist */
.pc-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.pc-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9688rem;
  color: var(--pc-foreground);
  line-height: 1.55;
}

.pc-check-item svg {
  stroke: var(--pc-emerald);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ─── ⑤ Doctors Section ─── */
.pc-doctors-svc {
  padding: 6rem 1.5rem;
  background: var(--pc-background);
}

.pc-doctors-svc .pc-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pc-doctors-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pc-doctor-svc-card {
  background: #ffffff;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.pc-doctor-svc-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.pc-doctor-svc-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pc-muted);
}

.pc-doctor-svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s;
}

.pc-doctor-svc-card:hover .pc-doctor-svc-photo img {
  transform: scale(1.04);
}

.pc-doctor-svc-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pc-doctor-svc-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pc-primary);
}

.pc-doctor-svc-info .spec {
  font-size: 0.875rem;
  color: var(--pc-gold);
  font-weight: 600;
}

.pc-doctor-svc-info .exp {
  font-size: 0.8125rem;
  color: var(--pc-muted-fg);
  margin-bottom: 0.75rem;
}

.pc-doctor-svc-info .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ─── ⑥ FAQ Section ─── */
.pc-faq {
  padding: 6rem 1.5rem;
  background: var(--pc-muted);
}

.pc-faq .pc-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pc-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.pc-faq-item[open] {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pc-faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pc-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  user-select: none;
}

.pc-faq-item summary::-webkit-details-marker {
  display: none;
}

.pc-faq-item summary:hover {
  color: var(--pc-gold);
}

.pc-faq-chevron {
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.pc-faq-chevron::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

.pc-faq-item[open] .pc-faq-chevron {
  transform: rotate(180deg);
}

.pc-faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--pc-muted-fg);
  line-height: 1.75;
}

/* ─── ⑦ Bottom CTA ─── */
.pc-svc-cta {
  background: var(--pc-primary);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pc-svc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(196, 165, 90, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.pc-svc-cta .container-wide {
  position: relative;
  z-index: 1;
}

.pc-svc-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.pc-svc-cta p {
  font-size: 1.0625rem;
  color: rgba(250, 249, 246, 0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.pc-svc-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ════════════════════════════════════════
   SERVICE PAGE — DESKTOP BREAKPOINTS
   ════════════════════════════════════════ */
@media (min-width: 640px) {
  .pc-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 900px) {
  .pc-svc-hero-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {

  /* Hero: show side image on desktop */
  .pc-svc-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .pc-svc-hero-img {
    display: block;
  }

  /* Offer grid: 3 columns */
  .pc-offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Why Us: 2 columns (text left, image right) */
  .pc-why-svc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .pc-why-svc-grid>div:first-child {
    order: 1;
  }

  .pc-why-svc-grid>div:last-child {
    order: 2;
  }

  /* Doctors: 3 columns */
  .pc-doctors-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile extras */
@media (max-width: 640px) {
  .pc-svc-hero {
    padding: 6rem 1rem 3.5rem;
    min-height: auto;
  }

  .pc-svc-hero-points {
    grid-template-columns: 1fr;
  }

  .pc-svc-btns {
    flex-direction: column;
  }

  .pc-svc-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .pc-trust-inner {
    gap: 0.875rem 1.5rem;
  }

  .pc-what-we-offer,
  .pc-why-svc,
  .pc-doctors-svc,
  .pc-faq,
  .pc-svc-cta {
    padding: 4rem 1rem;
  }
}


/* RTL & Language Flexibility Fixes */
html[dir="rtl"] body {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .pc-mission-quote {
  border-left: none;
  border-right: 2px solid var(--pc-gold);
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .btn svg {
  margin-right: 0 !important;
  margin-left: .5rem !important;
}

html[dir="rtl"] .pc-ls-dropdown {
  left: 0;
  right: auto;
  text-align: right;
}

html[dir="rtl"] .pc-legal-body ul,
html[dir="rtl"] ul {
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .pc-faq-chevron {
  transform: scaleX(-1) rotate(45deg);
}

/* Ensure nav can wrap only on mobile widths */
@media (max-width: 1023px) {
  .pc-nav-menu,
  .pc-nav-links>ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.btn,
.dl-btn {
  white-space: normal;
  height: auto;
  text-align: center;
}

/* Header RTL Stacking Fix */
html[dir="rtl"] .pc-nav {
  gap: 1.5rem;
}

html[dir="rtl"] .pc-nav-links {
  flex: 1 1 auto !important;
  min-width: 0;
}

html[dir="rtl"] .pc-nav-cta {
  flex-shrink: 0;
  gap: 1rem;
}

html[dir="rtl"] .pc-logo {
  flex-shrink: 0;
}

/* Header stability fix: prevent desktop nav wrapping/regression and top strip flash */
@media (min-width: 1024px) {
  .pc-nav-links {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }

  .pc-nav-menu,
  .pc-nav-links>ul {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
  }

  .pc-nav-menu>li,
  .pc-nav-links>ul>li {
    align-items: center;
  }

  #pc-primary-menu>li.menu-item-has-children,
  .pc-nav-parent {
    padding-bottom: 0 !important;
  }
}

.pc-header.is-transparent .pc-top-bar {
  background: rgba(10, 18, 40, .26);
}

/* Global RTL support (Arabic only via JS lang switcher) */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .pc-mission-quote {
  border-left: none;
  border-right: 2px solid var(--pc-gold);
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .btn svg {
  margin-right: 0 !important;
  margin-left: .5rem !important;
}

html[dir="rtl"] .pc-ls-dropdown {
  left: 0;
  right: auto;
  text-align: right;
}

html[dir="rtl"] .pc-legal-body ul,
html[dir="rtl"] ul {
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .pc-faq-chevron {
  transform: scaleX(-1) rotate(45deg);
}

/* Ensure nav can wrap only on mobile widths */
@media (max-width: 1023px) {
  .pc-nav-menu,
  .pc-nav-links>ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.btn,
.dl-btn {
  white-space: normal;
  height: auto;
  text-align: center;
}

/* Header RTL Stacking Fix */
html[dir="rtl"] .pc-nav {
  gap: 1.5rem;
}

html[dir="rtl"] .pc-nav-links {
  flex: 1 1 auto !important;
  min-width: 0;
}

html[dir="rtl"] .pc-nav-cta {
  flex-shrink: 0;
  gap: 1rem;
}

html[dir="rtl"] .pc-logo {
  flex-shrink: 0;
}

/* ═══ HOME HERO RTL FIXES ═══ */
html[dir="rtl"] .pc-hero-overlay1 {
  background: linear-gradient(to left, rgba(18, 32, 64, .95) 0%, rgba(18, 32, 64, .75) 50%, rgba(18, 32, 64, .3) 100%);
}

html[dir="rtl"] .pc-hero-stats {
  right: auto;
  left: 2rem;
}

html[dir="rtl"] .pc-stat-card {
  text-align: right;
}

/* ═══ MISSION CARD RTL FIXES ═══ */
html[dir="rtl"] .pc-mission-card::before {
  right: auto;
  left: 0;
  transform: translate(-3rem, -3rem);
}

/* ═══ TEAM & ABOUT HERO RTL FIXES ═══ */
html[dir="rtl"] .pc-team-hero::before,
html[dir="rtl"] .pc-about-hero::before {
  right: auto;
  left: -5rem;
}

/* ═══ FLOATING ELEMENTS RTL FIXES ═══ */
html[dir="rtl"] .pc-wa-fab {
  right: auto;
  left: 1.5rem;
}

html[dir="rtl"] .pc-mobile-close {
  right: auto;
  left: 1.125rem;
}

html[dir="rtl"] .pc-team-card-badge {
  right: auto;
  left: 0.5rem;
}

/* ═══ MISC ALIGNMENT RTL FIXES ═══ */
html[dir="rtl"] .pc-nav-chevron {
  margin-left: 0;
  margin-right: .25rem;
}

html[dir="rtl"] .pc-check-item {
  text-align: right;
}

html[dir="rtl"] .pc-location-row {
  text-align: right;
}

html[dir="rtl"] .pc-nav-menu,
html[dir="rtl"] .pc-mobile-nav,
html[dir="rtl"] .pc-mobile-ctas,
html[dir="rtl"] .pc-nav-actions,
html[dir="rtl"] .pc-top-bar-inner,
html[dir="rtl"] .pc-footer-grid,
html[dir="rtl"] .pc-footer-bottom {
  direction: rtl;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  text-align: right;
}
/* Mobile optimization for Russian translation overflow */
@media (max-width: 520px) {
  /* Stats: switch to 2-col grid so 3rd item wraps to centered row below */
  .pc-mission-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 8px !important;
    padding-top: 1rem !important;
  }
  /* Center the lone 3rd stat */
  .pc-mission-stat:last-child {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    max-width: 50% !important;
  }
  .pc-mission-stat .num {
    font-size: 1.4rem !important;
  }
  .pc-mission-stat .lbl {
    font-size: 0.6rem !important;
    line-height: 1.15 !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
  }
  /* Concierge tiles: single column */
  .pccc-features {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .pccc-feature {
    align-items: flex-start !important;
    padding: 0.625rem 0.875rem !important;
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }
}

/* WhatsApp button casing fix — explicitly override any uppercase transforms */
.btn-wa,
.svc-btn-wa,
.dl-btn-wa,
.pc-wa-fab,
.btn-whatsapp,
a[href*="wa.me"],
a[href*="whatsapp.com"] {
  text-transform: none !important;
}

/* Flush sections and preventive grid fix */
@media (min-width: 1024px) {
  .pc-preventive-grid { grid-template-columns: repeat(3, 1fr); }
}

main > section { margin-top: 0 !important; margin-bottom: 0 !important; border-top: none !important; }
.pc-footer { margin-top: -1px; position: relative; z-index: 10; }

/* Kill desktop separator artifacts from sticky mobile CTA injection */
@media (min-width: 769px) {
  .pc-sticky-cta {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
  }
}

/* Homepage top-strip removal */
body.home .pc-top-bar {
  display: none !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

