/* ═══════════════════════════════════════════
   OSLO CENTER — Mobile First v7
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --navy:   #0F1B35;
  --navy2:  #1A2B4A;
  --gold:   #C8922A;
  --gold2:  #E8AB3A;
  --goldbg: #FDF6E3;
  --cream:  #FAF7F0;
  --cream2: #F2EDE2;
  --cream3: #E6DDD0;
  --red:    #C0392B;
  --white:  #FFFFFF;
  --ink:    #1A1410;
  --ink2:   #3C3428;
  --muted:  #7A6E5C;
  --green:  #1A6B40;
  --border: rgba(0,0,0,.09);
  --r:      12px;
  --rl:     18px;
  --sh:     0 2px 12px rgba(15,27,53,.08);
  --sh2:    0 8px 32px rgba(15,27,53,.13);
  --sh3:    0 20px 60px rgba(15,27,53,.18);
  --tr:     all .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px }
body {
  font-family: 'Tajawal', sans-serif;
  background: var(--cream);
  color: var(--ink);
  direction: rtl;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit }
img { max-width: 100%; display: block }

/* ── Animated top stripe ── */
.top-stripe {
  position: fixed; top: 0; left: 0; right: 0; height: 5px; z-index: 300;
  background: repeating-linear-gradient(
    90deg,
    #ffffff 0 15px,
    #ED2939 15px 30px,
    #ffffff 30px 45px,
    #002395 45px 60px
  );
  background-size: 60px 100%;
  animation: stripe 1.2s linear infinite;
}
@keyframes stripe { to { background-position: 60px 0 } }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 200;
  background: rgba(250,247,240,.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,146,42,.15);
  box-shadow: 0 2px 12px rgba(15,27,53,.06);
  /* Safari fix */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.header-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 14px; height: 56px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: space-between; justify-content: space-between;
  gap: 10px;
}
.logo-area { display: flex; align-items: center; gap: 8px; flex-shrink: 0; min-width: 0; overflow: hidden }

/* LOGO IMAGE - fixed size, no overflow */
.logo-img-wrap {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-text { min-width: 0; overflow: hidden; flex: 1 }
.logo-text .en {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 900;
  color: var(--navy); display: block; line-height: 1.1;
  white-space: nowrap;
}
.logo-text .ar {
  font-size: 10px; color: var(--muted);
  display: block; margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
.logo-text .ar a {
  color: var(--gold) !important;
  font-weight: 800;
  -webkit-text-fill-color: var(--gold);
}
.main-nav { display: flex; align-items: center; gap: 3px }
.main-nav a {
  padding: 7px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 700; color: var(--ink2);
  transition: var(--tr); white-space: nowrap;
}
.main-nav a:hover { background: var(--cream2); color: var(--navy) }
.nav-book {
  background: var(--navy) !important; color: #fff !important;
  padding: 8px 16px !important;
  box-shadow: 0 2px 10px rgba(15,27,53,.3);
}
.nav-book:hover { background: var(--navy2) !important }
.nav-admin {
  background: var(--goldbg) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(200,146,42,.3) !important;
  font-size: 18px !important; padding: 6px 10px !important;
}
.menu-toggle {
  display: none; background: none; border: none;
  color: var(--navy); font-size: 24px; cursor: pointer;
  padding: 6px; border-radius: 8px; flex-shrink: 0;
}
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-menu a {
  padding: 16px 20px; font-size: 15px; font-weight: 700;
  color: var(--ink2); border-bottom: 1px solid var(--cream3);
  transition: var(--tr); display: block;
}
.mobile-menu a:hover { color: var(--navy); background: var(--cream) }
.mobile-menu a:last-child { border: none }
.mobile-menu.open { display: flex }

/* ══════════════════════════════════════
   HERO — Mobile First
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 80px 0 0;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Overlay - lighter to show bg image */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250,247,240,.93) 0%,
    rgba(250,247,240,.82) 50%,
    rgba(250,247,240,.45) 100%
  );
}

/* Content above bg */
.hero-content {
  position: relative; z-index: 1;
  padding: 32px 20px 40px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,246,227,.9);
  border: 1px solid rgba(200,146,42,.3);
  border-radius: 50px; padding: 6px 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero-eyebrow-txt { font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: 1.5px }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 14vw, 96px);
  font-weight: 900; line-height: .92;
  margin-bottom: 16px;
}
.h1-line1 { display: block; color: var(--navy) }
.h1-line2 {
  display: block; color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}

.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 16px;
}
.hdiv-line { height: 1px; width: 40px; background: var(--gold); opacity: .5 }
.hdiv-txt { font-size: 12px; color: var(--muted); letter-spacing: 1px; font-weight: 600 }

.hero-p {
  font-size: 15px; color: var(--ink2); line-height: 1.7;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 32px;
}
.btn-main {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: #fff;
  font-family: 'Tajawal', sans-serif; font-size: 15px; font-weight: 800;
  padding: 16px 28px; border-radius: 12px; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(15,27,53,.3); transition: var(--tr);
  width: 100%;
}
.btn-main:hover { background: var(--navy2); transform: translateY(-1px) }
.btn-main:active { transform: translateY(0) }
.btn-sec {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(250,247,240,.8); color: var(--navy);
  font-family: 'Tajawal', sans-serif; font-size: 15px; font-weight: 700;
  padding: 15px 28px; border-radius: 12px;
  border: 2px solid rgba(15,27,53,.18); cursor: pointer;
  transition: var(--tr); width: 100%;
  backdrop-filter: blur(4px);
}
.btn-sec:hover { border-color: var(--navy) }

.hero-stats {
  display: flex; justify-content: center; gap: 0;
}
.hst {
  padding: 12px 20px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border); text-align: center;
  backdrop-filter: blur(4px);
}
.hst:first-child { border-radius: 10px 0 0 10px }
.hst:last-child  { border-radius: 0 10px 10px 0 }
.hst + .hst { border-right: none }
.hst-n {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; color: var(--navy);
  display: block; line-height: 1;
}
.hst-l { font-size: 11px; color: var(--muted); margin-top: 3px; display: block }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section {
  padding: 60px 0; background: var(--white); position: relative;
}
.services-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--red));
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 16px }

.sec-head { text-align: center; margin-bottom: 36px }
.sec-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--goldbg); border: 1px solid rgba(200,146,42,.25);
  color: var(--gold); font-size: 10px; font-weight: 800;
  letter-spacing: 2.5px; padding: 6px 16px; border-radius: 50px;
  text-transform: uppercase; margin-bottom: 12px;
}
.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px,5vw,40px); font-weight: 900;
  color: var(--navy); margin-bottom: 8px;
}
.sec-p { font-size: 14px; color: var(--muted); max-width: 440px; margin: 0 auto; line-height: 1.7 }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.svc-card {
  background: var(--cream); border: 1.5px solid var(--cream3);
  border-radius: var(--r); padding: 18px 16px;
  cursor: pointer; transition: var(--tr);
  display: flex; align-items: center; gap: 14px;
  -webkit-tap-highlight-color: transparent;
}
.svc-card:hover, .svc-card:active {
  border-color: rgba(200,146,42,.4);
  background: var(--white); box-shadow: var(--sh);
}
.svc-icon {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.svc-info { flex: 1; min-width: 0 }
.svc-name { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 2px }
.svc-desc { font-size: 11px; color: var(--muted); line-height: 1.5 }
.svc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0 }
.svc-price { display: flex; align-items: baseline; gap: 3px }
.svc-amt { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; color: var(--gold) }
.svc-cur { font-size: 10px; color: var(--muted); font-weight: 600 }
.svc-cta {
  background: var(--navy); color: #fff;
  font-family: 'Tajawal', sans-serif; font-size: 11px; font-weight: 800;
  padding: 6px 14px; border-radius: 6px; border: none; cursor: pointer;
  transition: var(--tr); white-space: nowrap;
}
.svc-cta:hover { background: var(--gold) }

/* ══════════════════════════════════════
   BOOKING OVERLAY
══════════════════════════════════════ */
.bk-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(15,27,53,.7);
  backdrop-filter: blur(8px);
  display: none; align-items: flex-end; justify-content: center;
  padding: 0;
}
.bk-overlay.open { display: flex }

.bk-panel {
  width: 100%; max-width: 640px;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  box-shadow: var(--sh3);
  overflow: hidden;
  max-height: 95vh;
  display: flex; flex-direction: column;
  animation: slideUp .3s ease both;
}
@keyframes slideUp { from{opacity:0;transform:translateY(100%)} to{opacity:1;transform:none} }

.bk-hdr {
  background: var(--navy); padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.bk-hdr-left { display: flex; align-items: center; gap: 10px }
.bk-hdr-icon {
  width: 34px; height: 34px; background: rgba(255,255,255,.12);
  border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.bk-hdr-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 900; color: #fff;
}
.bk-hdr-sub { font-size: 10px; color: rgba(255,255,255,.5); margin-top: 1px }
.bk-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none;
  color: rgba(255,255,255,.7); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.bk-close:hover { background: rgba(192,57,43,.5); color: #fff }

.bk-body {
  padding: 18px 16px 24px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/* Steps */
.steps-row { display: flex; align-items: center; margin-bottom: 20px }
.stp { display: flex; align-items: center; gap: 5px; flex: 1 }
.stp:last-child { flex: 0 }
.stp-n {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cream2); border: 2px solid var(--cream3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--muted);
  transition: var(--tr); flex-shrink: 0;
}
.stp-lbl { font-size: 9px; color: var(--muted); font-weight: 700; white-space: nowrap }
.stp-ln { flex: 1; height: 2px; background: var(--cream3); margin: 0 4px; transition: var(--tr) }
.stp.active .stp-n { background: var(--navy); border-color: var(--navy); color: #fff }
.stp.active .stp-lbl { color: var(--navy) }
.stp.done .stp-n { background: var(--green); border-color: var(--green); color: #fff }

.bstep { animation: fadeIn .2s ease }
.bstep.hidden { display: none }
.bstep-h {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 14px;
}

/* Service list in modal */
.msvc-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px }
.msvc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--cream); border: 1.5px solid var(--cream3);
  border-radius: 10px; padding: 12px 14px;
  cursor: pointer; transition: var(--tr);
  -webkit-tap-highlight-color: transparent;
}
.msvc-row:active { background: var(--goldbg) }
.msvc-row.sel {
  border-color: var(--navy); background: rgba(15,27,53,.04);
  box-shadow: 0 0 0 3px rgba(15,27,53,.08);
}
.msvc-row-left { display: flex; align-items: center; gap: 10px }
.msvc-ic { font-size: 20px }
.msvc-nm { font-size: 14px; font-weight: 800; color: var(--navy) }
.msvc-row-right { display: flex; align-items: center; gap: 8px }
.msvc-pr { font-size: 13px; font-weight: 800; color: var(--gold); white-space: nowrap }
.msvc-chk {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--cream3); transition: var(--tr); flex-shrink: 0;
}
.msvc-row.sel .msvc-chk { background: var(--navy); border-color: var(--navy) }

/* Calendar */
.cal-wrap {
  background: var(--cream); border: 1.5px solid var(--cream3);
  border-radius: var(--r); overflow: hidden; margin-bottom: 14px;
}
.cal-header {
  background: var(--navy); padding: 11px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.cal-nav {
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 34px; height: 34px; border-radius: 8px; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.cal-nav:active { background: rgba(255,255,255,.25) }
.cal-month-lbl {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 700; color: #fff;
}
.cal-daynames {
  display: grid; grid-template-columns: repeat(7,1fr);
  background: rgba(15,27,53,.06); border-bottom: 1px solid var(--cream3);
}
.cal-daynames span {
  text-align: center;
  padding: 7px 0;
  font-size: 9px;
  font-weight: 800;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: -0.3px;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; padding: 8px 6px;
}
.cal-day {
  aspect-ratio: 1; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; position: relative;
  -webkit-tap-highlight-color: transparent;
  cursor: default;
  min-width: 0;
}
.cal-day.cal-today { border: 2px solid var(--gold); color: var(--gold) }
.cal-day.cal-selected { background: var(--navy); color: #fff; border: none }
.cal-day.cal-off { color: var(--red); opacity: .4; cursor: not-allowed; text-decoration: line-through }
.cal-day.cal-past { color: var(--muted); cursor: not-allowed; opacity: .35 }
.cal-day.cal-empty { cursor: default }
[style*="cursor:pointer"].cal-day:active { background: rgba(15,27,53,.1) }

.slots-section { margin-bottom: 10px }
.slots-chosen-date {
  background: var(--navy); color: #fff; border-radius: 8px;
  padding: 8px 14px; font-size: 13px; font-weight: 700;
  margin-bottom: 10px; text-align: center;
}
.slots-g {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 6px;
}
.slot {
  background: var(--cream); border: 1.5px solid var(--cream3);
  border-radius: 8px; padding: 10px 4px; text-align: center;
  cursor: pointer; font-size: 13px; font-weight: 800; color: var(--ink2);
  font-family: 'Tajawal', sans-serif; transition: var(--tr);
  -webkit-tap-highlight-color: transparent;
}
.slot:active { background: rgba(15,27,53,.08) }
.slot.picked { background: var(--navy); border-color: var(--navy); color: #fff }
.slot.busy {
  background: #FEF2F2; border-color: #FECACA; color: #D1B0B0;
  cursor: not-allowed; text-decoration: line-through; opacity: .7;
}
.slots-note { font-size: 13px; color: var(--muted); text-align: center; padding: 16px; grid-column: 1/-1 }

.offday-note {
  display: none; margin-top: 8px;
  background: #FEF2F2; border: 1px solid #FECACA;
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; font-weight: 700; color: var(--red);
}
.offday-note.show { display: block }

/* Form fields */
.flbl { display: block; font-size: 11px; color: var(--muted); margin-bottom: 6px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase }
.finput {
  width: 100%; background: var(--cream);
  border: 1.5px solid var(--cream3); border-radius: 10px;
  color: var(--ink); font-family: 'Tajawal', sans-serif;
  font-size: 16px; /* 16px prevents iOS zoom */
  padding: 13px 14px; outline: none; transition: var(--tr); direction: rtl;
  -webkit-appearance: none;
}
.finput:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,27,53,.08) }
textarea.finput { resize: vertical; min-height: 80px }
input[type=date]::-webkit-calendar-picker-indicator { filter: opacity(.45) }

.fields-col { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px }
.fgrp label { display: block; font-size: 11px; font-weight: 800; color: var(--muted); margin-bottom: 6px; letter-spacing: .5px; text-transform: uppercase }

/* Nav */
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; gap: 10px }
.btn-next {
  font-family: 'Tajawal', sans-serif; font-size: 14px; font-weight: 800;
  padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--navy); color: #fff; transition: var(--tr);
  box-shadow: 0 3px 14px rgba(15,27,53,.25); flex: 1;
  -webkit-tap-highlight-color: transparent;
}
.btn-next:active { transform: scale(.98) }
.btn-back {
  font-family: 'Tajawal', sans-serif; font-size: 14px; font-weight: 700;
  padding: 13px 20px; border-radius: 10px; cursor: pointer;
  background: var(--cream); border: 1.5px solid var(--cream3); color: var(--ink2);
  transition: var(--tr); flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

/* Confirm */
.confirm-wrap { text-align: center; padding: 8px 0 }
.confirm-emoji { font-size: 56px; display: block; margin-bottom: 14px; animation: bounceIn .6s ease }
.confirm-wrap h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 8px }
.confirm-wrap > p { color: var(--muted); font-size: 14px; margin-bottom: 18px }
.confirm-box {
  background: var(--cream); border: 1.5px solid var(--cream3);
  border-radius: var(--r); padding: 14px; text-align: right; margin-bottom: 16px;
}
.confirm-box p { font-size: 14px; color: var(--ink); line-height: 2 }
.confirm-box strong { color: var(--navy) }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section { padding: 60px 0; background: var(--cream); position: relative }
.contact-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--red));
}
.contact-grid { display: flex; flex-direction: column; gap: 28px }
.ct-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px,6vw,38px); font-weight: 900;
  color: var(--navy); margin-bottom: 24px; line-height: 1.1;
}
.ct-h2 em { color: var(--gold); font-style: normal }
.ct-row { display: flex; gap: 12px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--cream3) }
.ct-row:last-child { border: none; margin: 0; padding: 0 }
.ct-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.ct-lbl { font-size: 10px; font-weight: 800; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px }
.ct-val { font-size: 14px; color: var(--ink2); line-height: 1.6 }
.ct-val a { color: var(--navy); font-weight: 800 }
.contact-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--rl); padding: 24px; text-align: center; box-shadow: var(--sh);
}
.cc-ic { font-size: 44px; display: block; margin-bottom: 12px; animation: float 3s ease-in-out infinite }
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 900; color: var(--navy); margin-bottom: 12px }
.contact-card p { color: var(--muted); font-size: 14px; line-height: 2 }
.contact-card strong { color: var(--ink); font-weight: 700 }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.65);
  padding: 32px 16px; text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900;
  color: #fff; margin-bottom: 8px;
}
.footer-logo span { color: var(--gold2) }
.footer-hr { width: 40px; height: 1px; background: rgba(255,255,255,.2); margin: 12px auto }
.site-footer p { font-size: 13px; line-height: 1.9 }

/* ══════════════════════════════════════
   LOADING
══════════════════════════════════════ */
.load-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(250,247,240,.88); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.load-overlay.hidden { display: none }
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid rgba(15,27,53,.1); border-top-color: var(--navy);
  animation: spin .75s linear infinite; margin: 0 auto 12px;
}
.load-lbl { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 1px }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes spin     { to{transform:rotate(360deg)} }
@keyframes bounceIn { 0%{transform:scale(.3);opacity:0} 50%{transform:scale(1.1)} 80%{transform:scale(.9)} 100%{transform:scale(1);opacity:1} }

/* ══════════════════════════════════════
   TABLET & DESKTOP
══════════════════════════════════════ */
@media (min-width: 640px) {
  .hero-content { text-align: right; margin: 0; padding: 40px 32px 60px }
  .hero-eyebrow { margin: 0 0 22px }
  .hero-divider { justify-content: flex-start }
  .hero-btns { flex-direction: row; width: auto }
  .btn-main, .btn-sec { width: auto }
  .hero-stats { justify-content: flex-start }
  .svc-grid { grid-template-columns: 1fr 1fr }
  .contact-grid { flex-direction: row; align-items: start }
  .slots-g { grid-template-columns: repeat(5,1fr) }
}

@media (min-width: 900px) {
  .header-inner { padding: 0 24px }
  .main-nav { display: flex }
  .menu-toggle { display: none }
  .hero-content { padding: 60px 48px 80px; max-width: 650px }
  .svc-grid { grid-template-columns: repeat(3,1fr) }
  .contact-grid { gap: 48px }
  .bk-panel { border-radius: var(--rl); max-height: 90vh; margin: auto }
  .bk-overlay { align-items: center; padding: 16px }
}

@media (max-width: 639px) {
  .menu-toggle { display: block }
  .main-nav { display: none }
  /* Logo smaller on mobile */
  .logo-img-wrap { width: 34px; height: 34px; }
  .logo-text .en { font-size: 12px }
  .logo-text .ar { font-size: 9px; display: block }
}