/* ============================================================
   BaitCare.com — Home Nursing & Caregiving Platform
   Master Stylesheet — bilingual EN/AR
   ============================================================ */

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --purple:       #7C35C1;
  --purple-dark:  #5C1F9E;
  --purple-light: #9B5DE5;
  --purple-pale:  #F3EAFD;
  --teal:         #3ECFB2;
  --teal-dark:    #2AADA0;
  --teal-light:   #60DFC8;
  --teal-pale:    #E8FAF7;
  --white:        #FFFFFF;
  --off-white:    #F9F5FF;
  --bg:           #FAF7FF;
  --card:         #FFFFFF;
  --border:       #E8DDF5;
  --border-light: #F0E8FC;
  --text:         #1A0A2E;
  --text-mid:     #4A3B66;
  --text-muted:   #7A6B99;
  --text-light:   #B0A0CC;
  --green:        #22C55E;
  --red:          #EF4444;
  --yellow:       #F59E0B;

  --gradient-hero: linear-gradient(135deg, #2D0A6B 0%, #5C1F9E 45%, #3ECFB2 100%);
  --gradient-purple: linear-gradient(135deg, #7C35C1, #9B5DE5);
  --gradient-teal: linear-gradient(135deg, #3ECFB2, #60DFC8);
  --gradient-card: linear-gradient(145deg, #FFFFFF, #F9F5FF);

  --shadow-sm:   0 1px 4px rgba(124,53,193,0.08);
  --shadow-md:   0 4px 20px rgba(124,53,193,0.12);
  --shadow-lg:   0 10px 40px rgba(124,53,193,0.16);
  --shadow-xl:   0 20px 60px rgba(124,53,193,0.20);
  --shadow-purple: 0 8px 30px rgba(124,53,193,0.35);
  --shadow-teal:   0 8px 30px rgba(62,207,178,0.35);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-en: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-ar: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: var(--font-ar);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── Container ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; }
.section-label {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--text); margin-bottom: 14px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.75; }
.text-gradient {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.rtl .text-center { text-align: center; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-purple);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,53,193,0.45); }
.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-secondary:hover { background: var(--purple); color: var(--white); }
.btn-teal {
  background: var(--gradient-teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(62,207,178,0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: 50%; justify-content: center; }

/* ─── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; display: block; }

/* ── Text fallback — shown when the image asset fails to load ─ */
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', 'Cairo', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--purple, #6d28d9);
  letter-spacing: -0.4px;
  white-space: nowrap;
  line-height: 1;
}
/* Arabic fallback uses Cairo for correct script rendering */
body.rtl .nav-logo-text { font-family: 'Cairo', sans-serif; font-size: 1.3rem; }

/* Language-specific logos — applies to both <img> and text fallback <span> */
.logo-ar { display: none; }
body.rtl .logo-en { display: none; }
body.rtl .logo-ar { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--purple); background: var(--purple-pale); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: var(--border-light);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.lang-toggle:hover { background: var(--purple-pale); color: var(--purple); }
.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.nav-whatsapp:hover { background: #1EBE58; transform: translateY(-1px); }
.nav-book-btn { font-size: 0.88rem; padding: 10px 22px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 12px 16px; border-radius: var(--radius-md); }
.mobile-nav .nav-actions { padding: 8px 16px; flex-wrap: wrap; }

/* ─── Sticky WhatsApp Button ─────────────────────────────── */
.whatsapp-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.rtl .whatsapp-sticky { right: auto; left: 28px; align-items: flex-start; }

/* ─── RTL: flip directional arrow & chevron icons ────────── */
.rtl i.fa-arrow-right,
.rtl i.fa-arrow-left,
.rtl i.fa-chevron-right,
.rtl i.fa-chevron-left,
.rtl i.fa-angle-right,
.rtl i.fa-angle-left { display: inline-block; transform: scaleX(-1); }
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  color: white;
  font-size: 1.6rem;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-label {
  background: var(--text);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(62,207,178,0.08);
}
.hero-bg-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-bg-circle:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -80px; background: rgba(155,93,229,0.12); }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-content { color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(62,207,178,0.2);
  border: 1px solid rgba(62,207,178,0.4);
  color: var(--teal-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.hero-title .teal { color: var(--teal-light); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--teal-light); }
.hero-stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
.hero-images {
  position: relative;
  height: 560px;
}
.hero-img-main {
  position: absolute;
  right: 0; top: 20px;
  width: 70%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  height: 480px;
}
.hero-img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 280px;
  border: 4px solid rgba(255,255,255,0.3);
}
.hero-badge-card {
  position: absolute;
  top: 40px; left: 0;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.hero-badge-card .icon { font-size: 2rem; }
.hero-badge-card .info strong { display: block; font-size: 1.1rem; color: var(--purple); }
.hero-badge-card .info span { font-size: 0.78rem; color: var(--text-muted); }

/* ─── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-mid); font-size: 0.88rem; font-weight: 600;
}
.trust-item .icon { color: var(--teal); font-size: 1.1rem; }

/* ─── Section ────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--gradient-hero); color: white; }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-subtitle { margin: 0 auto; }

/* ─── Services Cards ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-purple);
}
.service-card.teal-accent::before { background: var(--gradient-teal); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--purple-pale);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-card.teal-accent .service-icon { background: var(--teal-pale); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.service-price {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.service-card.teal-accent .service-price { background: var(--teal-pale); color: var(--teal-dark); }

/* ─── Pricing Cards ───────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-purple);
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-type { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.pricing-name { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.pricing-price { font-size: 2.8rem; font-weight: 800; color: var(--purple); line-height: 1; }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.pricing-alt {
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin: 16px 0;
}
.pricing-alt .or { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.pricing-alt .alt-price { font-size: 1.4rem; font-weight: 800; color: var(--purple); }
.pricing-alt .alt-label { font-size: 0.8rem; color: var(--text-muted); }
.discount-badge {
  display: inline-block;
  background: #22C55E;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  vertical-align: middle;
}
.pricing-features { margin: 20px 0; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-mid); font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border: none; }
.pricing-features li .check { color: var(--teal); font-size: 1rem; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ─── How It Works ────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.step-card { text-align: center; padding: 24px; }
.step-num {
  width: 52px; height: 52px;
  background: var(--gradient-purple);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 16px;
}
.step-card h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.step-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.step-connector { display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.3rem; }

/* ─── Team / Nurse Profiles ───────────────────────────────── */
.nurses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.nurse-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.nurse-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--purple-light); }
.nurse-photo {
  width: 100%; height: 280px;
  object-fit: cover;
  object-position: top;
}
.nurse-photo-placeholder {
  width: 100%; height: 280px;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,0.5);
}
.nurse-info { padding: 24px; }
.nurse-type {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.nurse-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.nurse-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.nurse-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.nurse-tag {
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.nurse-card .btn { width: 100%; justify-content: center; }

/* ─── Our Team (homepage section) ────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}
.team-photo-wrap { position: relative; }
.team-photo-wrap img {
  width: 100%; height: 280px;
  object-fit: cover; object-position: top center;
  display: block;
}
.team-photo-fallback {
  width: 100%; height: 280px;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.team-type-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--gradient-purple);
  color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  pointer-events: none;
}
.team-type-badge.pa { background: var(--gradient-teal); }
.team-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.team-name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text);
}
.team-role {
  font-size: 0.82rem; font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.team-role .fa-star { color: #F59E0B; }
.team-card-body .btn {
  width: 100%; justify-content: center;
  margin-top: auto;
}
/* CTA below grid — always present, sizing adapts per breakpoint */
.team-cta {
  text-align: center;
  margin-top: 36px;
}

/* ─── Why BaitCare ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image-wrap { position: relative; }
.why-main-img { width: 100%; border-radius: var(--radius-xl); object-fit: cover; height: 480px; }
.why-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.why-badge .num { font-size: 2.4rem; font-weight: 800; color: var(--purple); }
.why-badge .lbl { font-size: 0.8rem; color: var(--text-muted); }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.why-feature:hover { border-color: var(--purple-light); box-shadow: var(--shadow-sm); }
.why-feature .icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.why-feature h4 { font-size: 0.98rem; margin-bottom: 4px; }
.why-feature p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; left: 24px;
  font-size: 5rem; color: var(--purple-pale);
  font-family: Georgia, serif; line-height: 1;
}
.rtl .testimonial-card::before { left: auto; right: 24px; }
.testimonial-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { color: var(--text-mid); font-size: 0.93rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ─── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; }
.cta-banner .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 50px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.55); }
.footer-social {
  display: flex; gap: 10px; margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--purple); color: white; }
.footer-col h4 { color: white; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-contact-item .icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--teal); }

/* ─── Page Header ────────────────────────────────────────── */
.page-header {
  background: var(--gradient-hero);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.breadcrumb a { color: var(--teal); }
.rtl .breadcrumb { flex-direction: row-reverse; }

/* ─── Booking Form ────────────────────────────────────────── */
.booking-section {
  padding: 60px 0 90px;
}
.booking-container {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.booking-steps-header {
  background: var(--gradient-hero);
  padding: 32px 40px;
  color: white;
}
.steps-progress {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; flex: 1;
}
.step-dot:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: rgba(255,255,255,0.25);
}
.step-dot.done::after { background: var(--teal); }
.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  transition: var(--transition);
  z-index: 1;
}
.step-dot.active .step-circle { background: white; border-color: white; color: var(--purple); }
.step-dot.done .step-circle { background: var(--teal); border-color: var(--teal); color: white; }
.step-label { font-size: 0.7rem; color: rgba(255,255,255,0.65); text-align: center; max-width: 80px; }
.step-dot.active .step-label { color: white; font-weight: 600; }

.booking-body { padding: 40px; }
.booking-step { display: none; }
.booking-step.active { display: block; }
.step-title { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-subtitle { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 28px; }

/* Service Selection */
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-option-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.service-option-card:hover { border-color: var(--purple-light); background: var(--off-white); }
.service-option-card.selected { border-color: var(--purple); background: var(--purple-pale); }
.service-option-card .check-circle {
  position: absolute; top: 16px; right: 16px;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.service-option-card.selected .check-circle { background: var(--purple); border-color: var(--purple); color: white; }
.service-option-card .svc-icon { font-size: 2.5rem; margin-bottom: 14px; }
.service-option-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text); }
.service-option-card .price-main { font-size: 1.6rem; font-weight: 800; color: var(--purple); }
.service-option-card .price-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.service-option-card .price-alt { background: white; border-radius: var(--radius-md); padding: 10px 14px; margin: 10px 0; }
.service-option-card .price-alt .or { font-size: 0.72rem; color: var(--text-muted); }
.service-option-card .price-alt .alt-num { font-size: 1.2rem; font-weight: 700; color: var(--purple); }
.service-option-card .features-list { margin-top: 14px; }
.service-option-card .features-list li {
  font-size: 0.82rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 5px;
}
.service-option-card .features-list li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* Calendar */
.calendar-wrap { max-width: 400px; margin: 0 auto; }
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.cal-nav { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-md); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.cal-nav:hover { background: var(--purple-pale); color: var(--purple); }
.cal-month { font-weight: 700; font-size: 1rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-label { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); padding: 6px 0; }
.cal-day {
  text-align: center; padding: 9px 4px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.cal-day:hover:not(.disabled) { background: var(--purple-pale); color: var(--purple); }
.cal-day.selected { background: var(--purple); color: white; border-color: var(--purple); }
.cal-day.today { border-color: var(--teal); color: var(--teal-dark); font-weight: 700; }
.cal-day.disabled { opacity: 0.3; cursor: not-allowed; }
.cal-day.other-month { opacity: 0.3; }
.booking-type-toggle {
  display: flex; gap: 10px; margin-bottom: 24px;
}
.type-btn {
  flex: 1; padding: 10px; border: 2px solid var(--border);
  border-radius: var(--radius-md); background: white;
  font-size: 0.88rem; font-weight: 600; color: var(--text-mid);
  cursor: pointer; transition: var(--transition);
}
.type-btn.active { border-color: var(--purple); color: var(--purple); background: var(--purple-pale); }
.selected-dates { margin-top: 20px; }
.selected-dates h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.date-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.date-tag {
  background: var(--purple-pale); color: var(--purple);
  font-size: 0.8rem; font-weight: 600;
  padding: 5px 12px; border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 6px;
}
.date-tag .remove { cursor: pointer; color: var(--purple-light); font-size: 0.9rem; }

/* Form Fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.85rem; font-weight: 700; color: var(--text);
}
.form-label .required { color: var(--red); margin-left: 3px; }
.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text);
  background: white;
  transition: var(--transition);
  width: 100%;
}
.form-control:focus { border-color: var(--purple); outline: none; box-shadow: 0 0 0 3px rgba(124,53,193,0.1); }
textarea.form-control { min-height: 90px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a6b99' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); }
.form-section-title { font-size: 1rem; font-weight: 700; color: var(--purple); margin: 24px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border-light); }

/* Nurse Filter/Select */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; align-items: center; }
.filter-chip {
  padding: 7px 16px; border-radius: var(--radius-full);
  border: 1.5px solid var(--border); background: white;
  font-size: 0.84rem; font-weight: 600; color: var(--text-mid);
  cursor: pointer; transition: var(--transition);
}
.filter-chip.active { background: var(--purple); border-color: var(--purple); color: white; }
.nurse-select-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.nurse-select-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.nurse-select-card:hover { border-color: var(--purple-light); transform: translateY(-3px); }
.nurse-select-card.selected { border-color: var(--purple); }
.nurse-select-card .selected-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--purple); color: white;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 0.7rem;
}
.nurse-select-card.selected .selected-badge { display: flex; }
.nurse-select-card img, .nurse-select-card .photo-placeholder {
  width: 100%; height: 160px;
  object-fit: cover; object-position: top;
}
.nurse-select-card .photo-placeholder {
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 2.5rem;
}
.nurse-select-info { padding: 14px; }
.nurse-select-info .type { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 3px; }
.nurse-select-info .name { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.nurse-select-info .exp { font-size: 0.78rem; color: var(--text-muted); }

/* Booking Summary */
.booking-summary { background: var(--off-white); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.booking-summary h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.summary-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 0.88rem; padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border: none; font-weight: 700; color: var(--purple); font-size: 1rem; }
.summary-row .label { color: var(--text-muted); }
.summary-row .value { text-align: right; color: var(--text); font-weight: 600; }

/* Step Nav */
.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.step-nav .btn { min-width: 140px; justify-content: center; }

/* ─── Admin Panel ────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--text);
  color: white;
  padding: 0;
  position: fixed; top: 0; left: 0; bottom: 0; width: 240px;
  overflow-y: auto;
}
.admin-sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-sidebar-header img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 8px; }
.admin-sidebar-header span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.admin-nav { padding: 16px 0; }
.admin-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem; font-weight: 600;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(255,255,255,0.08);
  color: white;
  border-left-color: var(--teal);
}
.admin-nav-link .icon { width: 20px; text-align: center; }
.admin-badge {
  margin-left: auto;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}
.admin-main { margin-left: 240px; padding: 32px 36px; background: #F4F6FA; min-height: 100vh; }
.admin-top-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.admin-top-bar h1 { font-size: 1.5rem; font-weight: 700; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.admin-stat-card {
  background: white; border-radius: var(--radius-lg);
  padding: 24px; display: flex; align-items: center; gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.admin-stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.stat-purple { background: var(--purple-pale); color: var(--purple); }
.stat-teal { background: var(--teal-pale); color: var(--teal-dark); }
.stat-green { background: #D1FAE5; color: #059669; }
.stat-red { background: #FEE2E2; color: #DC2626; }
.admin-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--text); }
.admin-stat-label { font-size: 0.8rem; color: var(--text-muted); }

.admin-table-wrap {
  background: white; border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden;
}
.admin-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.admin-table-header h3 { font-size: 1rem; font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--off-white); padding: 12px 16px;
  text-align: left; font-size: 0.78rem; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 16px; font-size: 0.88rem; color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
}
.admin-table tr:last-child td { border: none; }
.admin-table tr:hover td { background: var(--off-white); }
.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700;
}
.status-pending { background: #FEF3C7; color: #92400E; }
.status-approved { background: #D1FAE5; color: #065F46; }
.status-confirmed { background: #DBEAFE; color: #1E40AF; }
.status-cancelled { background: #FEE2E2; color: #991B1B; }
.action-btns { display: flex; gap: 6px; }
.action-btn {
  padding: 5px 12px; border-radius: var(--radius-md);
  font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); border: none;
}
.action-approve { background: #D1FAE5; color: #065F46; }
.action-approve:hover { background: #059669; color: white; }
.action-reject { background: #FEE2E2; color: #991B1B; }
.action-reject:hover { background: #EF4444; color: white; }
.action-view { background: var(--purple-pale); color: var(--purple); }
.action-view:hover { background: var(--purple); color: white; }

/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 2000;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: var(--radius-xl);
  padding: 36px; max-width: 600px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-header h3 { font-size: 1.2rem; font-weight: 700; }
.modal-close { background: var(--off-white); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; transition: var(--transition); }
.modal-close:hover { background: var(--border); }
.detail-row { display: flex; gap: 16px; font-size: 0.88rem; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.detail-row:last-child { border: none; }
.detail-label { font-weight: 700; color: var(--text); min-width: 140px; }
.detail-value { color: var(--text-mid); }

/* ─── Media Page ─────────────────────────────────────────── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ig-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1.5px solid var(--border);
  transition: var(--transition);
}
.ig-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ig-card img { width: 100%; height: 280px; object-fit: cover; }
.ig-card-body { padding: 16px; }
.ig-card-body .caption { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; -webkit-line-clamp: 3; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; }
.ig-card-body .ig-meta { display: flex; align-items: center; gap: 14px; margin-top: 10px; font-size: 0.78rem; color: var(--text-muted); }
.ig-banner {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
}
.ig-banner h2 { font-size: 2rem; margin-bottom: 10px; }
.ig-banner p { opacity: 0.85; margin-bottom: 20px; }
.ig-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: #8134AF;
  padding: 12px 28px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
}
.ig-follow-btn:hover { transform: scale(1.04); }

/* ─── Login Page ──────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.login-card {
  background: white; border-radius: var(--radius-xl);
  padding: 48px 40px; max-width: 420px; width: 100%;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.login-card img { height: 60px; margin: 0 auto 24px; }
.login-card h2 { font-size: 1.4rem; margin-bottom: 6px; }
.login-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }
.login-error { background: #FEE2E2; color: #991B1B; padding: 12px 16px; border-radius: var(--radius-md); font-size: 0.85rem; margin-bottom: 16px; display: none; }
.login-error.visible { display: block; }

/* ─── Toast Notifications ─────────────────────────────────── */
.toast-container {
  position: fixed; top: 90px; right: 24px; z-index: 3000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: white; border-radius: var(--radius-md);
  padding: 14px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; max-width: 360px;
  animation: slideIn 0.3s ease;
  border-left: 4px solid var(--purple);
}
.toast.success { border-left-color: var(--green); }
.toast.error { border-left-color: var(--red); }
@keyframes slideIn { from { opacity:0; transform: translateX(40px); } to { opacity:1; transform: translateX(0); } }

/* ─── Contact Page ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: white; border-radius: var(--radius-xl);
  padding: 36px; border: 1.5px solid var(--border);
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--purple);
}
.contact-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.contact-item a:hover { color: var(--purple); }
.contact-form-card {
  background: white; border-radius: var(--radius-xl);
  padding: 36px; border: 1.5px solid var(--border);
}
.contact-form-card h3 { font-size: 1.2rem; margin-bottom: 20px; }

/* ─── About Page ──────────────────────────────────────────── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-img { width: 100%; border-radius: var(--radius-xl); object-fit: cover; height: 420px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.value-card {
  text-align: center; padding: 32px 20px;
  background: white; border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--purple-light); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 2.5rem; margin-bottom: 14px; }
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Success State ───────────────────────────────────────── */
.success-state { text-align: center; padding: 48px 24px; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: #D1FAE5; color: #059669;
  font-size: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-state h3 { font-size: 1.4rem; margin-bottom: 10px; }
.success-state p { color: var(--text-muted); max-width: 440px; margin: 0 auto 24px; line-height: 1.75; }

/* ─── Utilities ──────────────────────────────────────────── */
.hidden { display: none !important; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-8 { gap: 32px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-images { height: 380px; order: -1; }
  .hero-img-main { width: 80%; }
  .why-grid { grid-template-columns: 1fr; }
  .why-badge { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { max-width: 100%; grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  /* Team grid: 2 columns on tablet */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-book-btn { display: none; }
  .nav-whatsapp span { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { padding: 40px 0; }
  /* Hide hero images on mobile — text stays centred and unobstructed */
  .hero-images { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  /* Team grid: single column, cap at 3 cards, show CTA button prominently */
  .team-grid { grid-template-columns: 1fr; }
  .team-grid .team-card:nth-child(n+4) { display: none; }
  .team-cta .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 14px 24px; }
  .service-options { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-body { padding: 24px 20px; }
  .cta-banner { padding: 40px 24px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 20px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .step-label { display: none; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
