:root {
  --teal: #0e8f88;
  --teal-dark: #0b6f6a;
  --tint: #e7f3f2;
  --border: #e2e9e8;
  --ink: #12201f;
  --muted: #5f6f6c;
  --muted-2: #8a9997;
  --bg: #f5f8f7;
  --dark: #12201f;
  --dark-border: #24332f;
  --dark-card: #1c2c2a;
  --dark-card-2: #0a1413;
  --dark-muted: #9fb0ad;
  --dark-accent: #7fd0c9;
  --danger: #b06a5b;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: 'Tajawal', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  direction: rtl;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }
input, textarea, button, select { font-family: inherit; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(14,143,136,0.12);
}
::selection { background: #cdeae7; }

.headline { font-family: 'Cairo', system-ui, sans-serif; font-weight: 800; letter-spacing: -0.01em; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
[data-reveal] {
  opacity: 0; transform: translateY(12px);
  transition: opacity .25s ease-out, transform .25s ease-out;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-lift] { transition: transform .15s ease, box-shadow .15s ease; }
[data-lift]:hover { transform: translateY(-5px); box-shadow: 0 22px 45px -26px rgba(18,32,31,.45); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.view { animation: fadeUp .18s ease both; }
.view[hidden] { display: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,248,247,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; cursor: pointer; background: none; border: none; padding: 0; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px; background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cairo'; font-weight: 800; font-size: 21px; flex-shrink: 0;
}
.brand-name { font-family: 'Cairo'; font-weight: 700; font-size: 18px; color: var(--ink); }
.navlinks { display: flex; align-items: center; gap: 30px; }
.navlinks span {
  cursor: pointer; font-weight: 500; font-size: 15px; color: var(--ink); background: none; border: none; font-family: inherit;
}
.navlinks span:hover, .navlinks span.active { color: var(--teal-dark); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 11px; padding: 15px 26px; font-weight: 700; font-size: 16px;
  cursor: pointer; font-family: inherit; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-white { background: #fff; color: var(--teal-dark); }
.btn-white:hover { background: #eafaf8; }
.btn-sm { padding: 11px 18px; font-size: 15px; border-radius: 10px; }
.btn-disabled { background: #dfe7e6; color: #a7b5b2; cursor: not-allowed; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }
@media (max-width: 820px) {
  .navlinks { display: none; }
  .navlinks.open { display: flex; position: absolute; top: 100%; right: 0; left: 0; background: #fff; flex-direction: column; padding: 16px 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .mobile-toggle { display: block; }
  .header-book { display: none; }
}

/* Hero */
.hero-section { padding: 72px 24px 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--tint); color: var(--teal-dark);
  padding: 7px 14px; border-radius: 99px; font-weight: 700; font-size: 13px; margin-bottom: 22px;
}
.hero-grid h1 { font-size: 56px; line-height: 1.12; margin: 0 0 20px; }
.hero-grid p { font-size: 19px; line-height: 1.7; color: var(--muted); margin: 0 0 32px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-rating { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.hero-rating .stars { color: var(--teal); font-size: 18px; }
.hero-media { position: relative; }
.hero-media .frame { height: 440px; border-radius: 22px; overflow: hidden; background: #e6efee; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-badge {
  position: absolute; inset-inline-start: -22px; bottom: 34px; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 20px; box-shadow: 0 18px 40px -22px rgba(18,32,31,0.35);
  display: flex; align-items: center; gap: 14px; animation: floatY 3.6s ease-in-out infinite;
}
.hero-badge .ic {
  width: 44px; height: 44px; border-radius: 11px; background: var(--tint); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.hero-badge .t1 { font-family: 'Cairo'; font-weight: 700; font-size: 17px; }
.hero-badge .t2 { font-size: 13px; color: var(--muted); }

/* Stats */
.stats-section { padding: 24px; }
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px;
}
.stats-bar > div { text-align: center; }
.stats-bar > div:not(:first-child) { border-inline-start: 1px solid #eef2f1; }
.stats-bar .num { font-family: 'Cairo'; font-weight: 800; font-size: 34px; color: var(--teal); }
.stats-bar .lbl { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Section headers */
.section-pad { padding: 56px 24px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 20px; flex-wrap: wrap; }
.kicker { color: var(--teal); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; margin-bottom: 8px; }
.section-head h2 { font-size: 36px; margin: 0; }
.view-all-link { cursor: pointer; font-weight: 700; color: var(--teal-dark); background: none; border: none; font-size: 15px; font-family: inherit; }

/* Grids */
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 820px) {
  .hero-grid, .grid2 { grid-template-columns: 1fr !important; }
  .hero-media { display: none; }
  .stats-bar, .grid3 { grid-template-columns: repeat(2,1fr) !important; }
  .stats-bar > div:nth-child(3) { border-inline-start: none; }
}

/* Service cards */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px;
}
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--tint);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-family: 'Cairo'; font-weight: 700; font-size: 19px; margin: 0 0 8px; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }
.service-card { display: flex; flex-direction: column; }
.service-card p { flex: 1; margin-bottom: 18px; }
.service-card .foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 16px; border-top: 1px solid #eef2f1;
}
.service-price { font-family: 'Cairo'; font-weight: 800; font-size: 17px; color: var(--ink); }
.service-price-label { font-size: 12px; color: var(--muted-2); }

/* Before/after dark section */
.dark-panel { background: var(--dark); border-radius: 22px; padding: 44px; color: #fff; }
.dark-panel .section-head .kicker { color: var(--dark-accent); }
.dark-panel .section-head h2 { color: #fff; }
.dark-panel .section-head .desc { color: var(--dark-muted); font-size: 14px; max-width: 340px; }
.ba-card { border-radius: 16px; overflow: hidden; background: var(--dark-card); }
.ba-card .img-wrap { height: 360px; background: var(--dark-card-2); }
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.ba-card .cap { padding: 14px 16px; font-size: 14px; color: #c8d4d2; }

/* Reviews */
.review-card .stars { color: var(--teal); font-size: 16px; margin-bottom: 12px; }
.review-card p { font-size: 16px; line-height: 1.8; margin: 0 0 18px; color: var(--ink); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--tint); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 15px; }
.review-meta { color: var(--muted); font-size: 13px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--teal), var(--teal-dark));
  border-radius: 22px; padding: 52px 44px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-banner h2 { font-size: 34px; margin: 0 0 10px; color: #fff; }
.cta-banner p { font-size: 17px; color: #d6f0ed; margin: 0; }

/* Placeholder image block */
.ph-block {
  background: repeating-linear-gradient(45deg,#eef4f3,#eef4f3 14px,#e6efee 14px,#e6efee 28px);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); font-family: ui-monospace, Menlo, monospace; font-size: 13px; text-align: center; padding: 12px;
}

/* Page hero (services/about/contact) */
.page-head { max-width: 640px; margin-bottom: 36px; }
.page-head h1 { font-size: 44px; margin: 0 0 14px; }
.page-head p { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 0; }

/* Team */
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.team-card .photo { height: 190px; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 18px 20px; }
.team-card h3 { font-family: 'Cairo'; font-weight: 700; font-size: 18px; margin: 0 0 4px; }
.team-card .role { color: var(--teal-dark); font-size: 14px; font-weight: 600; }

/* Contact */
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; gap: 16px; }
.contact-item .ic {
  width: 44px; height: 44px; border-radius: 11px; background: var(--tint); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-item h4 { font-weight: 700; font-size: 16px; margin: 0 0 4px; }
.contact-item .val { color: var(--muted); font-size: 15px; line-height: 1.6; }
.hours-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.hours-card .title { font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; font-size: 15px; padding: 7px 0; border-bottom: 1px solid #eef2f1; }
.hours-row:last-child { border-bottom: none; }
.hours-row .d { color: var(--muted); }
.hours-row .t { font-weight: 600; }
.hours-row .closed { color: var(--danger); }

.field { margin-bottom: 12px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 15px; background: #f9fbfb;
}
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.form-card .title { font-family: 'Cairo'; font-weight: 700; font-size: 18px; margin-bottom: 16px; }
.success-box { background: var(--tint); border: 1px solid #bfe6e2; border-radius: 12px; padding: 20px; text-align: center; color: var(--teal-dark); }
.success-box .ic { font-size: 30px; margin-bottom: 8px; }
.success-box .t1 { font-family: 'Cairo'; font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.success-box .t2 { font-size: 14px; color: #3f6f6a; }
.form-msg { margin-top: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13px; font-weight: 600; display: none; }
.form-msg.show { display: block; }
.form-msg.err { background: #fbe6e2; color: #8a3d2c; }

/* Booking */
.booking-wrap { max-width: 820px; margin: 0 auto; padding: 48px 24px 72px; }
.booking-title { text-align: center; margin-bottom: 12px; }
.booking-title h1 { font-size: 34px; margin: 0; }
.stepper { margin: 28px 0 34px; }
.stepper-track { height: 6px; background: #e6efee; border-radius: 99px; overflow: hidden; margin-bottom: 16px; }
.stepper-fill { height: 100%; background: var(--teal); border-radius: 99px; transition: width .3s ease; }
.stepper-labels { display: flex; justify-content: space-between; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; }
.step-dot {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; transition: all .2s; background: #eef2f1; color: #9fb0ad;
}
.step-dot.active { background: var(--tint); color: var(--teal-dark); border: 2px solid var(--teal); }
.step-dot.done { background: var(--teal); color: #fff; }
.step-label { font-size: 12px; font-weight: 600; text-align: center; color: #9fb0ad; }
.step-label.on { color: var(--ink); }
.booking-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.booking-card h2 { font-family: 'Cairo'; font-weight: 700; font-size: 22px; margin: 0 0 6px; }
.booking-card .sub { color: var(--muted); font-size: 15px; margin: 0 0 22px; }

.pt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pt-card {
  cursor: pointer; border-radius: 14px; padding: 22px; transition: all .15s;
  border: 1px solid var(--border); background: #fff;
}
.pt-card.selected { border: 1.5px solid var(--teal); background: var(--tint); }
.pt-card .emoji { font-size: 28px; margin-bottom: 10px; }
.pt-card .lbl { font-family: 'Cairo'; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.pt-card .desc { color: var(--muted); font-size: 14px; line-height: 1.6; }

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-pick {
  cursor: pointer; border-radius: 12px; padding: 16px; transition: all .15s;
  border: 1px solid var(--border); background: #fff; display: flex; align-items: center; gap: 12px;
}
.svc-pick.selected { border: 1.5px solid var(--teal); background: var(--tint); }
.svc-pick .icon { font-size: 22px; }
.svc-pick .name { font-weight: 700; font-size: 16px; }

.date-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 22px; }
.date-chip {
  min-width: 66px; text-align: center; padding: 12px 8px; border-radius: 12px; cursor: pointer; flex-shrink: 0;
  transition: all .15s; border: 1px solid var(--border); background: #fff;
}
.date-chip.selected { border: 1.5px solid var(--teal); background: var(--tint); }
.date-chip .wd { font-size: 12px; color: var(--muted); }
.date-chip .dnum { font-family: 'Cairo'; font-weight: 800; font-size: 20px; }
.date-chip .mon { font-size: 11px; color: var(--muted-2); }
.time-label { font-weight: 700; font-size: 14px; margin-bottom: 10px; color: var(--muted); }
.time-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
@media (max-width: 560px) { .time-grid, .pt-grid, .svc-grid { grid-template-columns: repeat(2,1fr); } }
.time-chip {
  text-align: center; padding: 11px 6px; border-radius: 10px; cursor: pointer; font-weight: 600;
  transition: all .15s; border: 1px solid var(--border); background: #fff;
}
.time-chip.selected { border: 1.5px solid var(--teal); background: var(--tint); color: var(--teal-dark); }
.time-chip.taken { opacity: .35; text-decoration: line-through; cursor: not-allowed; }
.closed-msg { color: var(--danger); font-size: 14px; background: #fbe6e2; border-radius: 10px; padding: 14px; text-align: center; }

.step-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid #eef2f1; }
.step-nav .btn-outline.invisible { visibility: hidden; }

.confirm-box { text-align: center; padding: 14px 0; }
.confirm-check {
  width: 70px; height: 70px; border-radius: 50%; background: var(--tint); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 20px;
}
.confirm-box h2 { font-size: 26px; margin: 0 0 8px; }
.confirm-box > p { color: var(--muted); font-size: 16px; margin: 0 0 26px; }
.summary-box {
  background: var(--bg); border: 1px solid #eef2f1; border-radius: 14px; padding: 22px; text-align: right;
  max-width: 420px; margin: 0 auto 26px;
}
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid #eef2f1; }
.summary-row:last-child { border-bottom: none; }
.summary-row .k { color: var(--muted); }
.summary-row .v { font-weight: 700; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--dark); color: #c8d4d2; }
.footer-inner { padding: 52px 24px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 36px; height: 36px; font-size: 19px; }
.footer-brand .name { font-family: 'Cairo'; font-weight: 700; font-size: 17px; color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.8; color: var(--dark-muted); margin: 0; max-width: 280px; }
.footer-col-title { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-links span, .footer-links a { cursor: pointer; color: #c8d4d2; }
.footer-links span:hover, .footer-links a:hover { color: #fff; }
.footer-list { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--dark-muted); }
.footer-bottom {
  border-top: 1px solid var(--dark-border); margin-top: 36px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #7d8f8c;
}
.footer-bottom-right { display: flex; gap: 14px; align-items: center; }
.staff-login {
  color: #7d8f8c; text-decoration: none; border: 1px solid var(--dark-border); border-radius: 7px; padding: 4px 10px;
}
.staff-login:hover { color: #fff; border-color: #3a4d48; }
