/* ============================================================
   JOLIE CENTER — جولي سنتر
   Theme: Cyan + Gold | Font: Cairo | Direction: RTL
   ============================================================ */

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

:root {
  --cyan-deep:     #0A2E2E;
  --cyan-mid:      #134444;
  --cyan-rich:     #0D5C5C;
  --cyan-bright:   #00C8C8;
  --cyan-light:    #A0E8E8;
  --cyan-pale:     #E0F7F7;
  --gold:          #C6A96A;
  --gold-light:    #E8D5A3;
  --cream:         #F5FAFA;
  --cream-2:       #E8F4F4;
  --white:         #FFFFFF;
  --charcoal:      #0D1A1A;
  --text-body:     #2A4A4A;
  --text-muted:    #6A9090;

  --font:          'Cairo', system-ui, sans-serif;
  --nav-h:         80px;
  --ease:          0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan-bright);
  margin-bottom: 14px;
  display: block;
  text-transform: uppercase;
}

.section-eyebrow--light { color: var(--cyan-light); }

.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--cyan-deep);
  margin-bottom: 18px;
}

.section-title em {
  font-style: normal;
  color: var(--cyan-bright);
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.9;
  max-width: 460px;
}

.section-header { margin-bottom: 60px; }
.section-header--centered { text-align: center; }
.section-header--centered .section-desc { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover::after { transform: translateX(0); }

.btn--primary {
  background: var(--cyan-bright);
  color: var(--cyan-deep);
}

.btn--primary:hover { background: #00AEAE; }

.btn--ghost {
  background: transparent;
  color: var(--cyan-deep);
  border: 2px solid var(--cyan-bright);
}

.btn--ghost:hover {
  background: var(--cyan-bright);
  color: var(--cyan-deep);
}

.btn--block { width: 100%; justify-content: center; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--cream-2);
  box-shadow: 0 4px 32px rgba(0,100,100,0.08);
}

.nav__logo {
  display: flex;
  align-items: baseline;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 900;
  color: var(--cyan-deep);
}

.nav__logo-j {
  font-size: 32px;
  font-weight: 900;
  color: var(--cyan-bright);
  line-height: 1;
}

.nav__logo-text { font-weight: 500; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 2px;
  background: var(--cyan-bright);
  transition: width var(--ease);
}

.nav__links a:hover { color: var(--cyan-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--cyan-bright) !important;
  color: var(--cyan-deep) !important;
  padding: 11px 24px;
  font-weight: 700 !important;
}

.nav__cta::after { display: none; }
.nav__cta:hover { background: #00AEAE !important; }

.nav__admin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px !important;
  font-size: 12px !important;
  color: var(--text-muted) !important;
  border: 1.5px solid var(--cream-2);
  font-weight: 700 !important;
  transition: all var(--ease);
}

.nav__admin::before {
  content: '◆';
  font-size: 8px;
  color: var(--cyan-bright);
}

.nav__admin::after { display: none !important; }

.nav__admin:hover {
  color: var(--cyan-deep) !important;
  border-color: var(--cyan-bright);
  background: var(--cyan-pale);
}

.mm-admin {
  font-size: 22px !important;
  color: var(--cyan-light) !important;
  opacity: 0.7;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.mm-admin::before {
  content: '◆';
  font-size: 12px;
  color: var(--cyan-bright);
}

.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(--cyan-deep);
  transition: all var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cyan-deep);
  z-index: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.mobile-menu a {
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  transition: color var(--ease);
}

.mobile-menu a:hover { color: var(--cyan-bright); }

.mm-cta {
  font-size: 18px !important;
  font-weight: 700 !important;
  background: var(--cyan-bright);
  color: var(--cyan-deep) !important;
  padding: 14px 40px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  direction: ltr;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__image-col {
  position: relative;
  background: var(--cyan-deep);
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.1s linear;
}

/* Cyan overlay tint on hero image */
.hero__image-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0,200,200,0.15) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__image-col::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(10,46,46,0.5), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  bottom: 48px;
  right: -1px;
  background: var(--cyan-bright);
  color: var(--cyan-deep);
  padding: 18px 26px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  min-width: 130px;
}

.hero__badge-number {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.hero__badge-label {
  font-size: 12px;
  font-weight: 600;
  margin-top: 3px;
  opacity: 0.85;
}

.hero__content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 72px;
  background: var(--cream);
  direction: rtl;
  text-align: right;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.hero__eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cyan-bright);
  flex-shrink: 0;
}

.hero__headline {
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--cyan-deep);
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: normal;
  color: var(--cyan-bright);
}

.hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 36px;
  margin-right: 0;
  margin-left: auto;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--cream-2);
  padding-top: 28px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
  flex: 1;
}

.hero__stat-n {
  font-size: 30px;
  font-weight: 900;
  color: var(--cyan-deep);
  line-height: 1;
}

.hero__stat-l {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--cream-2);
  margin: 0 22px;
  flex-shrink: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  z-index: 10;
  direction: ltr;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--cyan-bright), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-bar {
  background: var(--cyan-deep);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee 26s linear infinite;
  width: max-content;
  direction: ltr;
}

.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--cyan-bright);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services {
  padding: 110px 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-2);
  border: 2px solid var(--cream-2);
}

.service-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: background var(--ease);
  overflow: hidden;
}

.service-card:hover { background: var(--cyan-deep); }

.service-card__img {
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card--large .service-card__img { height: 320px; }
.service-card--wide { grid-column: span 2; }
.service-card--wide .service-card__img { height: 200px; }

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

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

.service-card__body {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 2px solid var(--cream-2);
  transition: border-color var(--ease);
  text-align: right;
}

.service-card:hover .service-card__body { border-top-color: var(--cyan-mid); }

.service-card__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan-bright);
}

.service-card__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--cyan-deep);
  transition: color var(--ease);
  line-height: 1.3;
}

.service-card:hover .service-card__title { color: var(--cyan-light); }

.service-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.85;
  flex: 1;
  transition: color var(--ease);
}

.service-card:hover .service-card__desc { color: rgba(224,247,247,0.75); }

.service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  justify-content: flex-end;
  transition: gap var(--ease), color var(--ease);
}

.service-card__link::before {
  content: '←';
  font-size: 13px;
  transition: transform var(--ease);
}

.service-card:hover .service-card__link { gap: 14px; }
.service-card:hover .service-card__link::before { transform: translateX(-4px); }

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
  background: var(--cyan-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  direction: ltr;
  min-height: 660px;
}

.about__image-col {
  position: relative;
  overflow: hidden;
}

.about__image-wrap {
  position: absolute;
  inset: 0;
}

.about__img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85) saturate(1.1);
}

/* Cyan overlay on about image */
.about__image-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,200,200,0.1) 0%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.about__accent-box {
  position: absolute;
  bottom: 48px;
  right: 0;
  background: var(--cyan-bright);
  padding: 22px 30px;
  z-index: 2;
}

.about__accent-text {
  font-size: 26px;
  font-weight: 900;
  color: var(--cyan-deep);
  line-height: 1;
}

.about__accent-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan-deep);
  opacity: 0.75;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.about__content-col {
  padding: 90px 72px 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: rtl;
  text-align: right;
}

.about__content-col .section-eyebrow { color: var(--cyan-light); }
.about__content-col .section-title { color: var(--cream); }
.about__content-col .section-title em { color: var(--cyan-bright); }

.about__text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(224,247,247,0.75);
  line-height: 1.95;
  margin-bottom: 18px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 44px;
  border-top: 1px solid rgba(0,200,200,0.2);
  border-bottom: 1px solid rgba(0,200,200,0.2);
  padding: 28px 0;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-direction: row-reverse;
}

.about__value-icon {
  color: var(--cyan-bright);
  font-size: 18px;
  line-height: 1.7;
  flex-shrink: 0;
}

.about__value h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 3px;
}

.about__value p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(224,247,247,0.6);
  line-height: 1.7;
}

.about__content-col .btn--primary {
  align-self: flex-end;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery {
  padding: 110px 0;
  background: var(--cream-2);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 280px;
  gap: 3px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover .gallery__img { transform: scale(1.06); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,46,46,0.88);
  display: flex;
  align-items: flex-end;
  padding: 26px;
  opacity: 0;
  transition: opacity var(--ease);
  direction: rtl;
}

.gallery__overlay span {
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan-light);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

/* ── BOOKING ──────────────────────────────────────────────── */
.booking { background: var(--charcoal); }

.booking__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  direction: ltr;
  min-height: 640px;
}

.booking__info-col {
  padding: 90px 68px;
  background: var(--cyan-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: rtl;
  text-align: right;
}

.booking__title {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 20px;
}

.booking__title em {
  font-style: normal;
  color: var(--cyan-bright);
}

.booking__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(224,247,247,0.7);
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 360px;
}

.booking__details {
  display: flex;
  flex-direction: column;
  margin-bottom: 44px;
}

.booking__detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,200,200,0.15);
}

.booking__detail:first-child { border-top: 1px solid rgba(0,200,200,0.15); }

.booking__detail-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking__detail-val {
  font-size: 14px;
  font-weight: 300;
  color: rgba(224,247,247,0.75);
  line-height: 1.7;
}

.booking__social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.booking__social-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-bright);
  border: 1.5px solid rgba(0,200,200,0.4);
  padding: 11px 22px;
  transition: all var(--ease);
}

.booking__social-link:hover {
  background: var(--cyan-bright);
  color: var(--cyan-deep);
  border-color: var(--cyan-bright);
}

.booking__form-col {
  padding: 76px 68px;
  background: var(--cream);
  display: flex;
  align-items: center;
  direction: rtl;
}

.booking-form,
.wizard__form {
  width: 100%;
  direction: rtl;
}

/* ── BOOKING WIZARD ───────────────────────────────────────── */
.wizard { width: 100%; direction: rtl; }

.wizard__progress {
  margin-bottom: 28px;
}

.wizard__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 14px;
}

.wizard__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--ease);
  position: relative;
  min-width: 0;
}

.wizard__step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  transition: all var(--ease);
  flex-shrink: 0;
  border: 2px solid transparent;
}

.wizard__step b {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.wizard__step.is-active { color: var(--cyan-deep); }
.wizard__step.is-active span {
  background: var(--cyan-bright);
  color: var(--cyan-deep);
  border-color: var(--cyan-bright);
  box-shadow: 0 0 0 4px rgba(0,200,200,0.18);
}

.wizard__step.is-done { color: var(--cyan-deep); }
.wizard__step.is-done span {
  background: var(--cyan-deep);
  color: var(--cyan-bright);
  border-color: var(--cyan-deep);
}

.wizard__bar {
  height: 3px;
  background: var(--cream-2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.wizard__bar-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(to left, var(--cyan-bright), var(--cyan-rich));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wizard__panel {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
  animation: wizardFade 0.4s ease;
}

.wizard__panel.is-active { display: flex; flex-direction: column; gap: 14px; }

.wizard__legend {
  font-size: 18px;
  font-weight: 900;
  color: var(--cyan-deep);
  margin-bottom: 6px;
  padding: 0;
}

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

.wizard__actions { margin-top: 8px; }
.wizard__actions--split { display: flex; gap: 12px; }
.wizard__actions--split .btn { flex: 1; justify-content: center; }

/* Service picker pills */
.service-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: var(--cream-2);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  user-select: none;
}

.service-pill input { position: absolute; opacity: 0; pointer-events: none; }

.service-pill:hover { background: #DCEFEF; }

.service-pill__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--cyan-bright);
  font-size: 16px;
  flex-shrink: 0;
  transition: all var(--ease);
}

.service-pill__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-deep);
}

.service-pill:has(input:checked) {
  background: var(--cyan-deep);
  border-color: var(--cyan-bright);
}

.service-pill:has(input:checked) .service-pill__icon {
  background: var(--cyan-bright);
  color: var(--cyan-deep);
}

.service-pill:has(input:checked) .service-pill__name {
  color: var(--cyan-light);
}

/* Time slot grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-slot {
  background: var(--cream-2);
  border: 2px solid transparent;
  color: var(--cyan-deep);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 6px;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
  white-space: nowrap;
}

.time-slot:hover {
  background: #DCEFEF;
  border-color: var(--cyan-light);
}

.time-slot.is-active {
  background: var(--cyan-deep);
  border-color: var(--cyan-bright);
  color: var(--cyan-light);
}

.time-slot[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.form-group__hint {
  font-weight: 400;
  font-size: 10px;
  color: var(--text-muted);
  margin-right: 6px;
}

/* Review */
.review {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--cream-2);
  background: var(--white);
}

.review__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid var(--cream-2);
  gap: 16px;
}

.review__row:last-child { border-bottom: none; }

.review__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.review__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan-deep);
  text-align: left;
  word-break: break-word;
}

/* Form-error state */
.wizard__error {
  background: #FFE7E7;
  color: #B0282C;
  border-right: 3px solid #E84D55;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
  display: none;
}

.wizard__error.is-visible { display: block; animation: wizardFade 0.3s ease; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: right;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream-2);
  border: 1.5px solid var(--cream-2);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  appearance: none;
  -webkit-appearance: none;
  text-align: right;
  direction: rtl;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A2E2E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan-bright);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.booking-form .btn--primary { margin-top: 6px; }

.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 24px;
  width: 100%;
  direction: rtl;
  animation: wizardFade 0.5s ease;
}

.booking-success.visible { display: flex; }

.booking-success__check {
  width: 64px; height: 64px;
  background: var(--cyan-bright);
  color: var(--cyan-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0,200,200,0.18);
  margin-bottom: 6px;
  animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes checkPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.booking-success h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--cyan-deep);
}

.booking-success > p {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 300;
  max-width: 320px;
}

.booking-success__summary {
  width: 100%;
  background: var(--cream-2);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  margin: 6px 0 4px;
}

.booking-success__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-deep);
}

.booking-success__summary-row b {
  font-weight: 800;
}

.booking-success__again {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  padding: 6px;
  margin-top: 2px;
}

.booking-success__again:hover { color: var(--cyan-deep); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(224,247,247,0.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(0,200,200,0.1);
  direction: rtl;
}

.footer__logo {
  display: flex;
  align-items: baseline;
  font-size: 26px;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer__logo .nav__logo-j { font-size: 34px; color: var(--cyan-bright); }

.footer__tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(224,247,247,0.45);
}

.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col li,
.footer__col a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(224,247,247,0.5);
  transition: color var(--ease);
}

.footer__col a:hover { color: var(--cyan-bright); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 28px;
  direction: rtl;
}

.footer__bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(224,247,247,0.25);
}

.footer__admin {
  color: rgba(0,200,200,0.55);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--ease);
}

.footer__admin:hover { color: var(--cyan-bright); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav { padding: 0 32px; }
  .hero__content-col { padding: 60px 60px 60px 48px; }
  .about__content-col { padding: 72px 52px; }
  .booking__info-col, .booking__form-col { padding: 72px 44px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; grid-template-rows: 58vh auto; }
  .hero__image-col { position: relative; height: 58vh; }
  .hero__image-wrap { position: absolute; inset: 0; }
  .hero__content-col { padding: 52px 32px; }
  .hero__scroll-hint { display: none; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .service-card--large { grid-column: span 2; }
  .service-card--wide { grid-column: span 2; }

  .about { grid-template-columns: 1fr; }
  .about__image-col { height: 380px; position: relative; }
  .about__image-wrap { position: absolute; inset: 0; }
  .about__content-col { padding: 64px 32px; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .booking__split { grid-template-columns: 1fr; }
  .booking__info-col, .booking__form-col { padding: 60px 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 18px; }
  .nav { padding: 0 18px; }
  .nav__logo { font-size: 20px; }
  .nav__logo-j { font-size: 26px; }
  .nav__cta { padding: 9px 16px; font-size: 12px !important; }
  .mobile-menu a { font-size: 28px; }

  .hero { grid-template-rows: 56vh auto; }
  .hero__image-col { height: 56vh; }
  .hero__headline { font-size: clamp(38px, 11vw, 48px); }
  .hero__content-col { padding: 36px 18px 44px; }
  .hero__sub { font-size: 14px; line-height: 1.75; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .btn { justify-content: center; }
  .hero__badge { bottom: 14px; padding: 14px 18px; min-width: 110px; }
  .hero__badge-number { font-size: 26px; }
  .hero__badge-label { font-size: 10px; }
  .hero__stats { padding-top: 22px; flex-wrap: wrap; gap: 14px 0; }
  .hero__stat-n { font-size: 22px; }
  .hero__stat-l { font-size: 10px; }
  .hero__stat-divider { margin: 0 12px; height: 26px; }

  .marquee-track { gap: 18px; animation-duration: 22s; }
  .marquee-track span { font-size: 11px; }

  .services { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 32px; }
  .services__grid { grid-template-columns: 1fr; gap: 1px; }
  .service-card--large, .service-card--wide { grid-column: span 1; }
  .service-card__img,
  .service-card--large .service-card__img,
  .service-card--wide .service-card__img { height: 200px; }
  .service-card__body { padding: 22px 22px; }
  .service-card__title { font-size: 20px; }

  .about__content-col { padding: 56px 22px; }
  .about__accent-box { padding: 16px 22px; bottom: 24px; }
  .about__accent-text { font-size: 22px; }

  .gallery { padding: 64px 0; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 70vw); gap: 2px; }
  .gallery__item--tall, .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
  .gallery__overlay { opacity: 1; background: linear-gradient(to top, rgba(10,46,46,0.85) 0%, rgba(10,46,46,0.0) 50%); padding: 18px; align-items: flex-end; }
  .gallery__overlay span { font-size: 16px; }

  .booking__info-col, .booking__form-col { padding: 48px 18px; }
  .booking__title { font-size: 36px; }
  .booking__desc { font-size: 14px; }
  .booking__social { flex-wrap: wrap; }

  /* Wizard mobile */
  .wizard__legend { font-size: 16px; }
  .wizard__step b { font-size: 9px; letter-spacing: 0.02em; }
  .wizard__step span { width: 26px; height: 26px; font-size: 12px; }
  .service-picker { grid-template-columns: 1fr 1fr; gap: 8px; }
  .service-pill { padding: 12px 10px; }
  .service-pill__icon { width: 28px; height: 28px; font-size: 14px; }
  .service-pill__name { font-size: 12px; }
  .time-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .time-slot { padding: 10px 4px; font-size: 12px; }

  .footer__top { grid-template-columns: 1fr; gap: 28px; padding-top: 56px; padding-bottom: 56px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; padding-top: 18px; padding-bottom: 22px; }
}

@media (max-width: 380px) {
  .service-picker { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
}
