/* ═══════════════════════════════════════════════
   REINA CLINICA — Shared Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --rose:        #D4737D;
  --rose-dark:   #B85C66;
  --rose-light:  #F0B8BF;
  --rose-pale:   #FDF0F1;
  --silver:      #8B9BB0;
  --silver-dark: #6B7A8F;
  --silver-light:#C8D3E0;
  --silver-pale: #F0F3F7;
  --cream:       #FDF8F6;
  --white:       #FFFFFF;
  --ink:         #2A2328;
  --muted:       #7A6E6F;
  --border:      #EDE5E6;
  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Jost', sans-serif;
  --ease: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:  0 2px 12px rgba(212,115,125,0.08);
  --shadow-md:  0 8px 32px rgba(212,115,125,0.12);
  --shadow-lg:  0 24px 64px rgba(212,115,125,0.16);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); color: var(--ink); background: var(--cream); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--ff-d); font-weight: 300; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
em.rose { font-style: italic; color: var(--rose); }
p { line-height: 1.7; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 90px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(253,248,246,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: var(--ease);
}
nav.scrolled { height: 64px; box-shadow: 0 2px 24px rgba(212,115,125,0.1); }
.nav-logo img { height: 68px; transition: var(--ease); }
nav.scrolled .nav-logo img { height: 54px; }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; flex-shrink: 1; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; opacity: 0.7; transition: var(--ease);
  padding: 0.5rem 0.7rem; display: flex; align-items: center; gap: 0.3rem;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { opacity: 1; color: var(--rose); }
.nav-links > li > a .arrow { font-size: 0.55rem; transition: var(--ease); }
.nav-links > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: white; border-radius: 14px; border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1); list-style: none;
  min-width: 220px; padding: 0.5rem 0;
  padding-top: 14px; margin-top: -6px;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  pointer-events: none;
}
.nav-links > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: all;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.dropdown li a {
  display: block; padding: 0.6rem 1.2rem; font-size: 0.82rem; font-weight: 500;
  color: var(--ink); text-decoration: none; transition: var(--ease);
  border-left: 2px solid transparent;
}
.dropdown li a:hover { color: var(--rose); background: var(--rose-pale); border-left-color: var(--rose); }
.dropdown li a.active { color: var(--rose); background: var(--rose-pale); border-left-color: var(--rose); }
.dropdown-divider { height: 1px; background: var(--border); margin: 0.4rem 0.8rem; }

.nav-cta {
  background: var(--rose); color: #fff; padding: 0.55rem 1.4rem; border-radius: 40px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: var(--ease); white-space: nowrap; margin-left: 1rem;
}
.nav-cta:hover { background: var(--rose-dark); box-shadow: 0 6px 20px rgba(212,115,125,0.38); transform: translateY(-1px); }

/* Burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; display: block; transition: var(--ease); }

/* Mobile Menu */
.mob {
  display: none; position: fixed; inset: 0; background: var(--cream); z-index: 299;
  flex-direction: column; overflow-y: auto; padding: 6rem 5% 3rem;
}
.mob.open { display: flex; }
.mob-close { position: absolute; top: 1.5rem; right: 5%; font-size: 1.8rem; cursor: pointer; color: var(--muted); background: none; border: none; }
.mob-section { margin-bottom: 1.5rem; }
.mob-section-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.6rem; }
.mob-section a { display: block; font-family: var(--ff-d); font-size: 1.4rem; font-weight: 400; color: var(--ink); text-decoration: none; padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
.mob-section a:hover { color: var(--rose); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 5% 80px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, white 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(212,115,125,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(139,155,176,0.07) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--muted); margin-bottom: 1.2rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: var(--ease); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--rose); font-weight: 500; }
.page-hero .stag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.7rem; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero h1 em { font-style: italic; color: var(--rose); }
.page-hero-desc { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 560px; margin-bottom: 2rem; }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SECTIONS ── */
section { padding: 90px 5%; }
.stag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.7rem; }
.sh { margin-bottom: 3.5rem; }
.sh.c { text-align: center; }
.sh.c .sp { margin: 0 auto; }
.sh h2 { margin-bottom: 1rem; }
.sh h2 em { font-style: italic; color: var(--rose); }
.sp { font-size: 0.96rem; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 520px; }
.div { width: 44px; height: 2px; background: linear-gradient(90deg, var(--rose), var(--rose-light)); margin: 1rem 0; border-radius: 2px; }
.div.c { margin: 1rem auto; }

/* ── BUTTONS ── */
.btn-r { background: var(--rose); color: #fff; padding: 0.8rem 2rem; border-radius: 40px; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.05em; text-decoration: none; transition: var(--ease); border: 2px solid var(--rose); display: inline-block; }
.btn-r:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,115,125,0.35); }
.btn-o { background: transparent; color: var(--ink); padding: 0.8rem 2rem; border-radius: 40px; font-weight: 500; font-size: 0.88rem; text-decoration: none; transition: var(--ease); border: 2px solid var(--border); display: inline-block; }
.btn-o:hover { border-color: var(--silver); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--rose); padding: 0.7rem 1.6rem; border-radius: 40px; font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: var(--ease); border: 2px solid var(--rose-light); display: inline-block; }
.btn-ghost:hover { background: var(--rose-pale); }

/* ── HAIR SERVICE IMAGE CARDS ── */
.hair-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.hair-svc-card { border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 3/2; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 6px 24px rgba(0,0,0,0.1); transition: var(--ease); text-decoration: none; color: inherit; }
.hair-svc-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.16); }
.hvc-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(145deg, var(--rose-pale), var(--silver-light)); }
.hvc-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.hvc-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 38%, rgba(15,8,5,0.48) 62%, rgba(15,8,5,0.88) 100%); }
.hvc-content { position: relative; z-index: 2; padding: 1.4rem 1.3rem 1.3rem; }
.hvc-name { font-family: var(--ff-d); font-size: 1.3rem; font-weight: 500; color: #fff; margin-bottom: 0.4rem; }
.hvc-desc { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 0.8rem; }
.hvc-link { font-size: 0.76rem; font-weight: 600; color: var(--rose-light); letter-spacing: 0.04em; }
.hvc-link::after { content: ' →'; }
@media(max-width:900px) {
  .hair-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hair-svc-card { aspect-ratio: 3/2; }
  .hvc-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(15,8,5,0.45) 78%, rgba(15,8,5,0.78) 100%); }
  .hvc-desc, .hvc-link { display: none; }
  .hvc-name { font-size: 0.88rem; margin-bottom: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hvc-content { padding: 0.8rem; }
}
@media(max-width:560px) { .hair-svc-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; } }

/* ── SERVICE CARDS (hub pages) ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; justify-content: center; }
.svc-card {
  background: var(--cream); border-radius: 18px; padding: 2rem;
  border: 1px solid var(--border); transition: var(--ease); position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--rose), var(--rose-light)); transform: scaleX(0); transform-origin: left; transition: var(--ease); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--rose-light); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; background: linear-gradient(135deg, var(--rose-pale), white); border: 1px solid var(--border); }
.svc-name { font-family: var(--ff-d); font-size: 1.35rem; font-weight: 500; margin-bottom: 0.5rem; }
.svc-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.2rem; }
.svc-link { font-size: 0.8rem; font-weight: 600; color: var(--rose); letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.3rem; }
.svc-link::after { content: '→'; transition: var(--ease); }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; align-items: start; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--rose-pale); border: 2px solid var(--rose-light); display: flex; align-items: center; justify-content: center; font-family: var(--ff-d); font-size: 1.4rem; font-weight: 500; color: var(--rose); flex-shrink: 0; }
.step-body h4 { font-family: var(--ff-d); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.4rem; }
.step-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── BENEFITS GRID ── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; justify-content: center; }
.benefit { background: white; border-radius: 16px; padding: 1.6rem; border: 1px solid var(--border); transition: var(--ease); }
.benefit:hover { box-shadow: var(--shadow-sm); border-color: var(--rose-light); }
.benefit-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.benefit h4 { font-family: var(--ff-d); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.4rem; }
.benefit p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── HOME SERVICE IMAGE CARDS ── */
.home-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.home-svc-card { border-radius: 20px; overflow: hidden; position: relative; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 8px 28px rgba(0,0,0,0.12); transition: var(--ease); cursor: pointer; }
.home-svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.home-svc-card::after { content: ''; position: absolute; top: 14px; right: 14px; width: 64px; height: 32px; background: url('images/reinaclinica-logo.webp') no-repeat right top / contain; opacity: 0.85; pointer-events: none; z-index: 4; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25)); }
.hsc-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(145deg, var(--rose-pale), var(--silver-light)); }
.hsc-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.hsc-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(15,8,5,0.45) 65%, rgba(15,8,5,0.82) 100%); }
.hsc-link { position: absolute; inset: 0; z-index: 3; }
.hsc-content { position: relative; z-index: 2; padding: 1.6rem 1.5rem 1.5rem; }
.hsc-name { font-family: var(--ff-d); font-size: 1.4rem; font-weight: 500; color: #fff; margin-bottom: 0.45rem; }
.hsc-desc { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 0.9rem; }
.hsc-links { list-style: none; display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.9rem; }
.hsc-links li a { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; position: relative; z-index: 4; }
.hsc-links li a:hover { color: var(--rose-light); }
.hsc-cta { font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 0.65rem; }
@media(max-width:900px) {
  .home-svc-grid { grid-template-columns: 1fr; }
  .home-svc-card { min-height: 220px; aspect-ratio: unset; }
  .hsc-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(15,8,5,0.55) 65%, rgba(15,8,5,0.88) 100%) !important; }
  .hsc-desc, .hsc-links, .hsc-cta { display: none; }
  .hsc-name { font-size: 1.5rem; margin-bottom: 0; }
}

/* ── HOME WHY IMAGE CARDS ── */
.home-why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.home-why-card { border-radius: 16px; overflow: hidden; position: relative; min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 4px 16px rgba(0,0,0,0.09); transition: var(--ease); }
.home-why-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.15); }
.home-why-card::after { content: ''; position: absolute; top: 10px; right: 10px; width: 44px; height: 22px; background: url('images/reinaclinica-logo.webp') no-repeat right top / contain; opacity: 0.85; pointer-events: none; z-index: 4; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25)); }
.hwc-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(145deg, var(--rose-pale), var(--silver-light)); }
.hwc-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hwc-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, rgba(15,8,5,0.5) 72%, rgba(15,8,5,0.85) 100%); }
.hwc-content { position: relative; z-index: 2; padding: 0.8rem 0.9rem; }
.hwc-title { font-family: var(--ff-d); font-size: 0.95rem; font-weight: 500; color: #fff; margin-bottom: 0.2rem; }
.hwc-p { font-size: 0.68rem; color: rgba(255,255,255,0.72); line-height: 1.45; }
@media(max-width:900px) {
  .home-why-grid { grid-template-columns: repeat(3, 1fr); }
  .home-why-card { min-height: 120px; }
  .hwc-p { display: none; }
  .hwc-title { font-size: 0.82rem; margin-bottom: 0; }
}
@media(max-width:560px) {
  .home-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hwc-title { font-size: 0.78rem; }
}

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { aspect-ratio: 4/5; background: transparent; display: flex; align-items: center; justify-content: center; }
.split-img img { width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%), linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%), linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); -webkit-mask-composite: source-in; mask-composite: intersect; }
.split-img-ph { opacity: 0.35; text-align: center; }
.split-img-ph .icon { font-size: 4rem; }
.split-img-ph p { font-family: var(--ff-d); font-size: 1rem; margin-top: 0.5rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }
.fi { border-radius: 13px; border: 1px solid var(--border); overflow: hidden; transition: var(--ease); }
.fi.open { border-color: var(--rose-light); box-shadow: 0 4px 18px rgba(212,115,125,0.08); }
.fq { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.3rem; cursor: pointer; font-weight: 500; font-size: 0.92rem; gap: 1rem; user-select: none; }
.fq:hover { background: var(--rose-pale); }
.fi.open .fq { background: var(--rose-pale); color: var(--rose-dark); }
.ft { width: 22px; height: 22px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; transition: var(--ease); color: var(--muted); }
.fi.open .ft { background: var(--rose); color: white; transform: rotate(45deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.fi.open .fa { max-height: 400px; }
.fa p { padding: 0 1.3rem 1.1rem; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--ink); padding: 80px 5%; text-align: center; }
.cta-strip .stag { color: var(--rose-light); }
.cta-strip h2 { color: white; margin-bottom: 1rem; }
.cta-strip h2 em { color: var(--rose-light); }
.cta-strip p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 2rem; font-size: 0.96rem; }
.cta-strip .btn-r { background: var(--rose); }
.cta-strip .btn-o { color: white; border-color: rgba(255,255,255,0.25); }
.cta-strip .btn-o:hover { border-color: white; background: rgba(255,255,255,0.08); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; width: 100%; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; justify-content: center; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 1.8rem; transition: var(--ease); }
.testi-card:hover { background: rgba(212,115,125,0.1); border-color: rgba(212,115,125,0.28); }
.testi-stars { color: var(--rose-light); font-size: 0.9rem; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.testi-text { font-family: var(--ff-d); font-size: 1.05rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-light), var(--silver-light)); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.testi-name { font-size: 0.84rem; font-weight: 600; color: white; }
.testi-loc { font-size: 0.72rem; color: rgba(255,255,255,0.42); }

/* ── BEFORE/AFTER ── */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; justify-content: center; }
.ba-card { background: linear-gradient(135deg, var(--rose-light), var(--silver-light), var(--rose-pale)); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: var(--ease); padding: 2.5px; position: relative; }
.ba-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(212,115,125,0.15); background: linear-gradient(135deg, var(--rose), var(--silver-light), var(--rose-light)); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; z-index: 1; background: white; border-radius: 17.5px; overflow: hidden; }
.ba-img { aspect-ratio: 3/4; position: relative; overflow: hidden; background: linear-gradient(160deg, var(--silver-light), var(--silver-pale)) center / cover no-repeat; display: flex; align-items: center; justify-content: center; -webkit-user-select: none; user-select: none; }
.ba-img.after { background: linear-gradient(160deg, var(--rose-pale), var(--rose-light)) center / cover no-repeat; }
.ba-img[style*="background-image"] { background-size: cover; background-position: center; background-repeat: no-repeat; }
.ba-img::before { content: ''; position: absolute; inset: -20%; background-image: url('images/reinaclinica-logo.webp'); background-repeat: repeat; background-size: 110px auto; background-position: center; opacity: 0.15; transform: rotate(-22deg); transform-origin: center; pointer-events: none; z-index: 2; mix-blend-mode: multiply; }
.ba-img::after { content: ''; position: absolute; top: 7px; right: 7px; width: 52px; height: 26px; background: url('images/reinaclinica-logo.webp') no-repeat right top / contain; opacity: 0.82; pointer-events: none; z-index: 3; }
.ba-img-ph { opacity: 0.35; font-size: 3rem; }
.ba-lbl { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.5); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; white-space: nowrap; z-index: 3; }
.ba-bar { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: white; z-index: 1; }
.ba-info { padding: 1.1rem 1.3rem; background: white; border-radius: 0 0 17.5px 17.5px; position: relative; z-index: 1; }
.ba-info h4 { font-family: var(--ff-d); font-size: 1.05rem; font-weight: 500; margin-bottom: 0.25rem; }
.ba-info p { font-size: 0.77rem; color: var(--muted); }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; justify-content: center; }
.stat-card { background: white; border-radius: 18px; padding: 1.8rem 1.5rem; border: 1px solid var(--border); text-align: center; transition: var(--ease); }
.stat-card:hover { border-color: var(--rose-light); box-shadow: var(--shadow-sm); }
.stat-num { font-family: var(--ff-d); font-size: 2.4rem; font-weight: 500; color: var(--rose); line-height: 1; }
.stat-label { font-size: 0.76rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
.cf { background: white; border-radius: 22px; padding: 2.6rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.cf h3 { font-family: var(--ff-d); font-size: 1.7rem; font-weight: 400; margin-bottom: 0.3rem; }
.cf-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.8rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 0.45rem; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 0.7rem 0.95rem; border: 1px solid var(--border); border-radius: 9px; font-family: var(--ff-b); font-size: 0.88rem; color: var(--ink); background: var(--cream); transition: var(--ease); outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(212,115,125,0.1); background: white; }
.fg textarea { resize: none; height: 100px; }
.f-sub { width: 100%; background: var(--rose); color: white; border: none; padding: 0.95rem; border-radius: 40px; font-family: var(--ff-b); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; transition: var(--ease); margin-top: 0.4rem; }
.f-sub:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,115,125,0.35); }
.ci { display: flex; flex-direction: column; gap: 2rem; }
.ci-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.ci-ico { width: 42px; height: 42px; background: var(--rose-pale); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.ci-text strong { display: block; font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.ci-text span { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 220px; border: none; display: block; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; justify-content: center; }
.tc { text-align: center; }
.tc-photo { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 1.3rem; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; background: linear-gradient(135deg, var(--silver-light), var(--rose-light)); border: 4px solid white; box-shadow: 0 8px 28px rgba(212,115,125,0.14); position: relative; }
.tc-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tc-photo::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--rose-light); }
.tc-name { font-family: var(--ff-d); font-size: 1.35rem; font-weight: 500; margin-bottom: 0.25rem; }
.tc-role { font-size: 0.75rem; font-weight: 600; color: var(--rose); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.7rem; }
.tc-bio { font-size: 0.85rem; color: var(--muted); line-height: 1.6; max-width: 240px; margin: 0 auto; }
.tc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: center; margin-top: 0.9rem; }
.tc-tag { background: var(--rose-pale); color: var(--rose-dark); font-size: 0.68rem; font-weight: 600; padding: 0.22rem 0.6rem; border-radius: 20px; }

/* ── PACKAGE CARDS ── */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; justify-content: center; max-width: 960px; margin-left: auto; margin-right: auto; }
.pkg { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; transition: var(--ease); position: relative; }
.pkg.featured { border-color: var(--rose); background: rgba(212,115,125,0.08); }
.pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--rose); color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 1rem; border-radius: 20px; white-space: nowrap; }
.pkg-name { font-family: var(--ff-d); font-weight: 400; color: white; margin-bottom: 0.3rem; }
.pkg-sub { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 1.4rem; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.8rem; }
.pkg-list li { font-size: 0.85rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 0.5rem; }
.pkg-list li::before { content: '✓'; color: var(--rose-light); font-weight: 700; font-size: 0.72rem; }
.pkg-btn { display: block; text-align: center; background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.15); padding: 0.7rem; border-radius: 40px; font-size: 0.83rem; font-weight: 600; text-decoration: none; transition: var(--ease); }
.pkg.featured .pkg-btn { background: var(--rose); border-color: var(--rose); }
.pkg-btn:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-1px); }

/* ── FOOTER ── */
footer { background: #1E1A1B; color: rgba(255,255,255,0.55); padding: 64px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { margin-bottom: 1.4rem; }
.footer-logo img { height: 110px; width: auto; display: block; filter: drop-shadow(0 4px 16px rgba(212,115,125,0.25)); }
.footer-about { font-size: 0.86rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: white; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--ease); }
.footer-col ul li a:hover { color: var(--rose-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; flex-wrap: wrap; gap: 0.5rem; }
.socials { display: flex; gap: 0.7rem; }
.sl { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--ease); overflow: hidden; }
.sl svg { width: 100%; height: 100%; display: block; }
.sl:hover { transform: translateY(-2px) scale(1.05); filter: brightness(1.1); }

/* ── FLOATING WA ── */
.wa-float { position: fixed; bottom: max(1.8rem, calc(env(safe-area-inset-bottom) + 0.8rem)); right: 1.8rem; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; z-index: 99; box-shadow: 0 4px 12px rgba(37,211,102,0.5); transition: var(--ease); }
.wa-float:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
@keyframes fu { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fl { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pwa { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.42); } 50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); } }
.rev { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rev.vis { opacity: 1; transform: translateY(0); }

/* ── BG VARIANTS ── */
.bg-white { background: white; }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--ink); }
.bg-dark .stag { color: var(--rose-light); }
.bg-dark h2 { color: white; }
.bg-dark h2 em { color: var(--rose-light); }
.bg-dark .sp { color: rgba(255,255,255,0.55); }
.bg-silver { background: var(--silver-pale); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links > li > a { padding: 0.5rem 0.65rem; font-size: 0.75rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-burger { display: flex; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-img { aspect-ratio: 4/5; }
  .split-img img {
    -webkit-mask-image:
      linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%),
      linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image:
      linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%),
      linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  section { padding: 64px 5%; }
  .page-hero { padding: 120px 5% 60px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ═══ LANGUAGE SWITCHER ═══ */
.lang-switcher { display: flex; align-items: center; gap: 0.25rem; margin-left: 0.8rem; background: var(--silver-pale); border-radius: 40px; padding: 0.25rem; border: 1px solid var(--border); }
.lang-btn { background: none; border: none; padding: 0.28rem 0.7rem; border-radius: 40px; font-family: var(--ff-b); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; color: var(--muted); transition: var(--ease); display: flex; align-items: center; gap: 0.35rem; }
.lang-btn:hover { color: var(--rose); }
.lang-btn.active { background: var(--rose); color: white; box-shadow: 0 2px 8px rgba(212,115,125,0.35); }
.flag-img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; display: inline-block; flex-shrink: 0; }

/* ═══ PACKAGES PAGE — pkg-card component ═══ */
.pkg-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 1180px; margin: 3rem auto 0; align-items: start; }
.pkg-card { background: white; border-radius: 22px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: var(--ease); position: relative; display: flex; flex-direction: column; border: 1px solid rgba(212,115,125,0.08); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(212,115,125,0.14); }
.pkg-card-featured { border: 2px solid var(--rose); box-shadow: 0 8px 32px rgba(212,115,125,0.15); }
.pkg-card-royal { background: linear-gradient(180deg, #fdfaf6 0%, #ffffff 100%); border: 1px solid rgba(184,134,76,0.18); }
.pkg-card-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.3rem; }
.pkg-card-header .pkg-card-name { margin-bottom: 0; flex: 1; min-width: 0; }
.pkg-card-badge { display: inline-block; background: var(--rose); color: white; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.32rem 0.7rem; border-radius: 20px; box-shadow: 0 4px 12px rgba(212,115,125,0.3); white-space: nowrap; flex-shrink: 0; align-self: center; }
.pkg-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, var(--rose-pale), var(--silver-light)); position: relative; }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-card-img::after { content: ''; position: absolute; top: 6px; right: 16px; width: 80px; height: 40px; background: url('images/reinaclinica-logo.webp') no-repeat right top / contain; opacity: 0.88; pointer-events: none; z-index: 4; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.pkg-card-img-placeholder::before { content: '✦'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: rgba(212,115,125,0.35); font-family: var(--ff-d); }
.pkg-card-royal .pkg-card-img { background: linear-gradient(135deg, #e8d5b7, #f5e6cf); }
.pkg-card-body { padding: 1.8rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.pkg-card-name { font-family: var(--ff-d); font-size: 1.7rem; font-weight: 500; color: var(--ink); margin-bottom: 0.3rem; line-height: 1.1; }
.pkg-card-royal .pkg-card-name { color: #8b6a3d; }
.pkg-card-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.4rem; letter-spacing: 0.02em; }
.pkg-card-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.8rem; flex-grow: 1; }
.pkg-card-list li { font-size: 0.86rem; color: var(--ink); line-height: 1.5; position: relative; padding-left: 1.4rem; }
.pkg-card-list li::before { content: '✓'; color: var(--rose); font-weight: 700; font-size: 0.85rem; position: absolute; left: 0; top: 0.05rem; }
.pkg-card-royal .pkg-card-list li::before { color: #b8864c; }
.pkg-card-btn { display: block; text-align: center; background: var(--ink); color: white; padding: 0.85rem; border-radius: 40px; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: var(--ease); margin-top: auto; }
.pkg-card-btn:hover { background: var(--rose); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(212,115,125,0.3); }
.pkg-card-featured .pkg-card-btn { background: var(--rose); }
.pkg-card-featured .pkg-card-btn:hover { background: var(--ink); }
.pkg-card-royal .pkg-card-btn { background: #8b6a3d; }
.pkg-card-royal .pkg-card-btn:hover { background: #6d5230; box-shadow: 0 6px 18px rgba(139,106,61,0.35); }
@media (max-width: 980px) {
  .pkg-card-grid { grid-template-columns: 1fr; max-width: 460px; gap: 1.5rem; }
}
html[dir="rtl"] .pkg-card-list li { padding-left: 0; padding-right: 1.4rem; text-align: right; }
html[dir="rtl"] .pkg-card-list li::before { left: auto; right: 0; }

/* ═══ POST-CARE PAGE ═══ */
.pc-hero-img { max-width: 880px; margin: 2.5rem auto 0; border-radius: 22px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); position: relative; aspect-ratio: 16/7; background: linear-gradient(135deg, var(--rose-pale), var(--silver-light)); }
.pc-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-hero-img::after { content: ''; position: absolute; top: 14px; right: 14px; width: 72px; height: 36px; background: url('images/reinaclinica-logo.webp') no-repeat right top / contain; opacity: 0.88; pointer-events: none; z-index: 3; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.pc-hero-img-fallback::before { content: '✦'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(212,115,125,0.3); font-family: var(--ff-d); }

.pc-instr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1180px; margin: 3rem auto 0; }
.pc-card { background: white; border: 1px solid rgba(212,115,125,0.1); border-radius: 18px; padding: 1.8rem 1.6rem; transition: var(--ease); position: relative; }
.pc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(212,115,125,0.1); border-color: rgba(212,115,125,0.25); }
.pc-card-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.pc-card h3 { font-family: var(--ff-d); font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-bottom: 1rem; line-height: 1.2; }
.pc-card-note { background: linear-gradient(180deg, #fef9f5 0%, #ffffff 100%); border-color: rgba(212,115,125,0.22); }

.pc-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.pc-list li { font-size: 0.88rem; color: var(--muted); line-height: 1.55; position: relative; padding-left: 1.3rem; }
.pc-list li::before { content: '◆'; color: var(--rose); font-size: 0.7rem; position: absolute; left: 0; top: 0.35rem; }

.pc-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; max-width: 1180px; margin: 2.5rem auto 0; }
.pc-benefit { display: flex; gap: 1rem; align-items: flex-start; background: white; padding: 1.4rem 1.3rem; border-radius: 14px; border: 1px solid rgba(212,115,125,0.08); }
.pc-benefit-icon { font-size: 1.6rem; flex-shrink: 0; }
.pc-benefit h4 { font-family: var(--ff-d); font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-bottom: 0.3rem; }
.pc-benefit p { font-size: 0.84rem; color: var(--muted); line-height: 1.5; margin: 0; }

.pc-prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; max-width: 1180px; margin: 2.5rem auto 0; }
.pc-prod { background: white; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: var(--ease); border: 1px solid rgba(212,115,125,0.08); display: flex; flex-direction: column; }
.pc-prod:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,115,125,0.13); }
.pc-prod-set { border: 1.5px solid var(--rose-light); background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%); }
.pc-prod-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, var(--silver-pale), var(--rose-pale)); position: relative; display: flex; align-items: center; justify-content: center; }
.pc-prod-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; display: block; }
.pc-prod-img-fallback::before { content: '🧴'; font-size: 3.5rem; opacity: 0.35; }
.pc-prod-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.pc-prod-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.4rem; }
.pc-prod h4 { font-family: var(--ff-d); font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: 0.3rem; line-height: 1.2; }
.pc-prod-size { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.75rem; font-style: italic; }
.pc-prod p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; margin: 0; }
.pc-prod-btn { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; padding: 0.55rem 0.9rem; background: rgba(37,211,102,0.08); color: #128c44; border: 1px solid rgba(37,211,102,0.25); border-radius: 30px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; transition: var(--ease); align-self: flex-start; }
.pc-prod-btn::before { content: ''; width: 14px; height: 14px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23128c44'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347zM12 0C5.373 0 0 5.373 0 12c0 2.127.558 4.126 1.533 5.859L0 24l6.335-1.51A11.955 11.955 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0z'/></svg>") no-repeat center / contain; flex-shrink: 0; }
.pc-prod-btn:hover { background: #25D366; color: white; border-color: #25D366; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.pc-prod-btn:hover::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347zM12 0C5.373 0 0 5.373 0 12c0 2.127.558 4.126 1.533 5.859L0 24l6.335-1.51A11.955 11.955 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0z'/></svg>"); }

.pc-disclaimer { max-width: 820px; margin: 3rem auto 0; text-align: center; font-size: 0.78rem; color: var(--muted); line-height: 1.6; font-style: italic; padding: 1.2rem; background: rgba(255,255,255,0.5); border-radius: 10px; }

html[dir="rtl"] .pc-list li { padding-left: 0; padding-right: 1.3rem; text-align: right; }
html[dir="rtl"] .pc-list li::before { left: auto; right: 0; }
html[dir="rtl"] .pc-hero-img::after { right: auto; left: 14px; }

/* ═══ RTL SUPPORT ═══ */
html[dir="rtl"] body { font-family: 'Jost', 'Segoe UI', Tahoma, sans-serif; }
html[dir="rtl"] nav { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; direction: ltr; }
html[dir="rtl"] nav > div { flex-direction: row-reverse; }
html[dir="rtl"] .dropdown { left: auto; right: 0; text-align: right; }
html[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: 0.8rem; }
html[dir="rtl"] .div { margin-right: 0; }
html[dir="rtl"] .div.c { margin: 1.1rem auto; }
html[dir="rtl"] .split { direction: ltr; }
html[dir="rtl"] .split > * { direction: rtl; }
html[dir="rtl"] .step { grid-template-columns: 60px 1fr; }
html[dir="rtl"] .breadcrumb { flex-direction: row-reverse; }
html[dir="rtl"] .hero-stats { flex-direction: row; }
html[dir="rtl"] .hero-btns { flex-direction: row; }
html[dir="rtl"] .page-hero-actions { flex-direction: row-reverse; }
html[dir="rtl"] .svc-link::after { content: '←'; }
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .mob { align-items: flex-end; padding-right: 5%; padding-left: 0; }
html[dir="rtl"] .mob-close { right: auto; left: 5%; }
/* RTL contact — see below */
html[dir="rtl"] .tc-tags { flex-direction: row-reverse; }
html[dir="rtl"] .benefit { text-align: right; }
html[dir="rtl"] .svc-pts li { flex-direction: row-reverse; }
html[dir="rtl"] .pkg-list li { flex-direction: row-reverse; }
html[dir="rtl"] .testi-author { flex-direction: row-reverse; }
html[dir="rtl"] .step { direction: rtl; }
html[dir="rtl"] .fq { flex-direction: row-reverse; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 { text-align: right; }
html[dir="rtl"] p { text-align: right; }
html[dir="rtl"] .sh.c h2, html[dir="rtl"] .sh.c p, html[dir="rtl"] .sh.c .stag { text-align: center; }
html[dir="rtl"] .page-hero-inner h1, html[dir="rtl"] .page-hero-inner p, html[dir="rtl"] .page-hero-inner .stag { text-align: right; }

/* ═══ COMPACT LANGUAGE SWITCHER ═══ */
.lang-switcher { position: relative; margin-left: 0.5rem; }
.lang-current {
  display: flex; align-items: center; gap: 0.35rem;
  background: var(--silver-pale); border: 1px solid var(--border);
  border-radius: 40px; padding: 0.3rem 0.8rem 0.3rem 0.5rem;
  cursor: pointer; font-family: var(--ff-b); font-size: 0.75rem;
  font-weight: 600; color: var(--ink); transition: var(--ease);
  white-space: nowrap;
}
.lang-current:hover { border-color: var(--rose-light); background: var(--rose-pale); }
.lang-switcher.open .lang-current { border-color: var(--rose); background: var(--rose-pale); }
.lang-arrow { font-size: 0.5rem; transition: transform 0.25s ease; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: white; border-radius: 12px; border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12); padding: 0.35rem;
  min-width: 110px; display: none; z-index: 400;
}
.lang-switcher.open .lang-menu { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 0.5rem; width: 100%;
  padding: 0.42rem 0.75rem; border: none; background: none; cursor: pointer;
  font-family: var(--ff-b); font-size: 0.78rem; font-weight: 500;
  color: var(--ink); border-radius: 8px; transition: var(--ease); text-align: left;
}
.lang-option:hover { background: var(--rose-pale); color: var(--rose-dark); }
.lang-option.active { background: var(--rose); color: white; }

/* Mobile lang options */
.lang-option-mob {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.38rem 0.85rem; border: 1px solid var(--border);
  background: white; border-radius: 40px; cursor: pointer;
  font-family: var(--ff-b); font-size: 0.78rem; font-weight: 600;
  color: var(--ink); transition: var(--ease);
}
.lang-option-mob:hover { border-color: var(--rose-light); background: var(--rose-pale); }
.lang-option-mob.active { background: var(--rose); color: white; border-color: var(--rose); }

/* Remove old .lang-btn styles conflict */
.lang-btn { display: none; }

/* ═══ IMPROVED RTL CONTACT DETAILS ═══ */
/* ── RTL CONTACT PAGE ── */
html[dir="rtl"] .contact-grid { direction: rtl; }

/* Form (left column) */
html[dir="rtl"] .cf { direction: rtl; text-align: right; }
html[dir="rtl"] .cf h3, html[dir="rtl"] .cf-sub { text-align: right; }
html[dir="rtl"] .form-row { direction: rtl; }
html[dir="rtl"] .fg label { text-align: right; display: block; }
html[dir="rtl"] .fg input,
html[dir="rtl"] .fg select,
html[dir="rtl"] .fg textarea { text-align: right; direction: rtl; }

/* Contact info (right column) — KEY FIX:
   direction:rtl on parent already makes flex row go right-to-left,
   so we use row (not row-reverse) to get icon on right, text on left */
html[dir="rtl"] .ci { direction: rtl; text-align: right; }
html[dir="rtl"] .ci-item {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
html[dir="rtl"] .ci-text { text-align: right; }
html[dir="rtl"] .ci-text strong { text-align: right; display: block; }
html[dir="rtl"] .ci-text span { text-align: right; display: block; }

/* Map card flips to right side */
html[dir="rtl"] .map-card { left: auto; right: 12px; text-align: right; }
html[dir="rtl"] .map-card-rating { flex-direction: row-reverse; }

/* ═══ RTL LANG SWITCHER ═══ */
html[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: 0.5rem; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .lang-option { flex-direction: row-reverse; text-align: right; }

/* ═══ RTL MOBILE MENU FIXES ═══ */
/* Fix: nav > div rule was overriding nav-burger flex-direction,
   turning the 3 horizontal bars into "— — —" */
html[dir="rtl"] .nav-burger { flex-direction: column !important; }

/* Fix: mobile menu panel — right-aligned Arabic text */
html[dir="rtl"] .mob { direction: rtl; align-items: stretch !important; padding: 6rem 5% 3rem !important; }
html[dir="rtl"] .mob-section { text-align: right; width: 100%; }
html[dir="rtl"] .mob-section a { text-align: right; width: 100%; display: block; }
html[dir="rtl"] .mob-section-title { text-align: right; width: 100%; }
html[dir="rtl"] .lang-switcher-mob { justify-content: flex-end; }

/* ── Content Protection ─────────────────────────────────────────────────── */
img { pointer-events: none; user-select: none; -webkit-user-select: none; }
/* ─────────────────────────────────────────────────────────────────────────── */
