/* ============================================================
   LOUALICHE CENTRE — STYLESHEET v5
   Font: Din Arabic (local OTF) + Cairo (web fallback)
   Colors: Navy #1B3D72 · Teal #007BA8
   ============================================================ */

/* ── 1. WEB FONT FALLBACK (loads instantly, used if OTF fails on iOS / MIME issues) ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;900&display=swap');

/* ── 1b. DIN ARABIC @FONT-FACE ── */
@font-face { font-family:'DinAr'; src:url('../fonts/din-arabic-thin.otf') format('opentype'); font-weight:200; font-style:normal; font-display:swap; }
@font-face { font-family:'DinAr'; src:url('../fonts/din-arabic-light.otf') format('opentype'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'DinAr'; src:url('../fonts/din-arabic-regular.otf') format('opentype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'DinAr'; src:url('../fonts/din-arabic-medium.otf') format('opentype'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'DinAr'; src:url('../fonts/din-arabic-semibold.otf') format('opentype'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'DinAr'; src:url('../fonts/din-arabic-bold.otf') format('opentype'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'DinAr'; src:url('../fonts/din-arabic-black.otf') format('opentype'); font-weight:900; font-style:normal; font-display:swap; }

/* ── 2. DESIGN TOKENS ── */
:root {
  --navy:        #1B3D72;
  --navy-deep:   #0F2447;
  --teal:        #007BA8;
  --teal-hover:  #005F83;
  --teal-light:  #E4F4FA;
  --teal-pale:   #F2F9FC;
  --bg:          #FFFFFF;
  --surface:     #F5F9FC;
  --text:        #0D1E2D;
  --text-2:      #3D5670;
  --muted:       #6A849A;
  --border:      #D0E5EF;
  --dark-bg:     #0C1B2A;
  --white:       #FFFFFF;

  --font:        'DinAr', 'Cairo', 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
  --header-h:    86px;
  --max-w:       1160px;
  --r-s:         8px;
  --r-m:         14px;
  --r-l:         22px;
  --r-pill:      100px;

  --shadow-s:    0 2px 12px rgba(0,0,0,.07);
  --shadow-m:    0 6px 28px rgba(0,0,0,.10);
  --shadow-l:    0 16px 50px rgba(0,0,0,.13);
  --t:           .22s ease;

  --font-scale:  1;
}

[data-theme="dark"] {
  --bg:       #0C1B2A;
  --surface:  #132234;
  --text:     #E2EEF8;
  --text-2:   #93B4CC;
  --muted:    #618EA8;
  --border:   #213650;
  --dark-bg:  #060F18;
}

/* High contrast mode */
[data-contrast="high"] {
  --text:   #000 !important;
  --text-2: #111 !important;
  --bg:     #fff !important;
  --surface:#f0f0f0 !important;
  --border: #333 !important;
}
[data-theme="dark"][data-contrast="high"] {
  --text:   #fff !important;
  --text-2: #eee !important;
  --bg:     #000 !important;
  --surface:#111 !important;
  --border: #ccc !important;
}

/* ── 3. RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html {
  scroll-behavior: smooth;
  direction: rtl;
  font-size: calc(16px * var(--font-scale));
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DinAr', 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif !important;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}

/* Force Din Arabic on all text elements */
h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, select, span, div, li {
  font-family: 'DinAr', 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;
}

img     { max-width:100%; height:auto; display:block; }
a       { color:inherit; text-decoration:none; }
ul      { list-style:none; }
button  { cursor:pointer; border:none; background:none; font-family:inherit; }
input, textarea, select { font-family:inherit; }

/* ── 4. HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: var(--header-h);
  background: transparent;
  z-index: 900;
  transition: background var(--t), box-shadow var(--t);
}

body:not(.home) .site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}
[data-theme="dark"] body:not(.home) .site-header {
  background: var(--dark-bg);
  border-color: var(--border);
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-m);
}
[data-theme="dark"] .site-header.scrolled {
  background: rgba(12,27,42,.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Single logo — natural colours, soft white pill so it sits cleanly on any background */
.header-logo {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  height: 70px;
  padding: 6px 22px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  transition: var(--t);
}
.header-logo:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,0,0,.18); }
.header-logo img {
  display:block;
  height: 56px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  object-position: center;
  filter: none;
}
[data-theme="dark"] .header-logo {
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(0,0,0,.35);
}

/* Header actions */
.header-actions { display:flex; align-items:center; gap:10px; }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  display: flex; align-items:center; justify-content:center;
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  transition: var(--t);
}
.site-header.scrolled .theme-toggle,
body:not(.home) .theme-toggle {
  color: var(--muted);
  background: var(--surface);
  border-color: var(--border);
}
.theme-toggle:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.theme-toggle:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* Header booking button */
.header-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.header-book-btn:hover { background: var(--teal); color: var(--white); }
.site-header.scrolled .header-book-btn,
body:not(.home) .header-book-btn {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(0,123,168,.28);
}
.site-header.scrolled .header-book-btn:hover,
body:not(.home) .header-book-btn:hover { background: var(--navy); }

/* ── 5. FLOATING BOOK BUTTON (mobile) ── */
.lc-float-book {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0,123,168,.45);
  animation: floatPulse 2.5s ease-in-out infinite;
  text-decoration: none;
  border: none;
}
@keyframes floatPulse {
  0%,100% { box-shadow:0 8px 30px rgba(0,123,168,.45); transform:translateX(-50%) translateY(0); }
  50%      { box-shadow:0 12px 38px rgba(0,123,168,.60); transform:translateX(-50%) translateY(-3px); }
}
.lc-float-book:hover { background: var(--navy); animation-play-state:paused; }

/* ── 6. PAGE MAIN ── */
.site-main { min-height:100vh; }

/* Non-home pages: push content below fixed header
   Elementor canvas pages handle this themselves via section padding */
body:not(.home):not(.elementor-page) .site-main { margin-top: var(--header-h); }

/* Elementor canvas: no extra margin, sections handle their own top padding */
.elementor-page .site-main { margin-top: 0; }

/* ── 7. ANIMATION KEYFRAMES ── */
@keyframes lc-slide-right { from { opacity:0; transform:translateX(50px); } to { opacity:1; transform:translateX(0); } }
@keyframes lc-fade-up     { from { opacity:0; transform:translateY(36px); } to { opacity:1; transform:translateY(0); } }
@keyframes lc-scale-in    { from { opacity:0; transform:scale(.92); } to { opacity:1; transform:scale(1); } }
@keyframes lc-float       { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-14px); } }
@keyframes lc-glow-pulse  { 0%,100% { box-shadow:0 0 0 0 rgba(0,123,168,.4); } 70% { box-shadow:0 0 0 14px rgba(0,123,168,0); } }
@keyframes lc-count-pop   { 0% { transform:scale(1); } 50% { transform:scale(1.12); } 100% { transform:scale(1); } }

/* Hero entrance */
.hero-anim-badge   { animation: lc-slide-right .6s .15s ease both; }
.hero-anim-title   { animation: lc-slide-right .7s .28s ease both; }
.hero-anim-sub     { animation: lc-slide-right .7s .42s ease both; }
.hero-anim-actions { animation: lc-fade-up     .6s .55s ease both; }
.hero-anim-img img { animation: lc-scale-in .8s .35s ease both, lc-float 4.5s 1.2s ease-in-out infinite; }

/* Scroll reveal */
.lc-reveal {
  opacity:0;
  transform:translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.lc-reveal.is-visible { opacity:1; transform:translateY(0); }

/* Stagger siblings */
.lc-stagger > *:nth-child(1) { transition-delay:0s; }
.lc-stagger > *:nth-child(2) { transition-delay:.10s; }
.lc-stagger > *:nth-child(3) { transition-delay:.20s; }
.lc-stagger > *:nth-child(4) { transition-delay:.30s; }
.lc-stagger > *:nth-child(5) { transition-delay:.40s; }
.lc-stagger > *:nth-child(6) { transition-delay:.50s; }

/* Counter pop on finish */
.lc-count.is-done { animation: lc-count-pop .35s ease; }

/* ── 8. BADGE ── */
.lc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  color: #A8DCED;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.lc-badge::before {
  content:''; width:7px; height:7px;
  background:#4DCEEF; border-radius:50%; flex-shrink:0;
  animation: lc-glow-pulse 2s ease-in-out infinite;
}

/* ── 9. BUTTONS ── */
.lc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.lc-btn:focus-visible { outline:3px solid var(--teal); outline-offset:3px; }
.lc-btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 5px 22px rgba(0,123,168,.38);
}
.lc-btn--primary:hover { background: var(--teal-hover); transform:translateY(-2px); color:var(--white); }
.lc-btn--outline {
  background: transparent;
  color: rgba(255,255,255,.90);
  border-color: rgba(255,255,255,.40);
}
.lc-btn--outline:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.75); color:var(--white); }

/* ── 10. HERO ── */
.lc-hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, #0D5B82 100%);
  min-height: 100vh;
  overflow: hidden;
}
.lc-hero::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events:none;
}
.lc-hero::after {
  content:''; position:absolute;
  top:-20%; left:40%; width:60%; height:80%;
  background: radial-gradient(ellipse at center, rgba(0,144,192,.18) 0%, transparent 70%);
  pointer-events:none;
}

.lc-hero-inner {
  position: relative; z-index:1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) 24px 0;
  gap: 24px;
}

.lc-hero-content { padding-bottom: 60px; }

.lc-hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: #FFF;
  line-height: 1.2;
  margin-bottom: 20px;
}
.lc-hero-accent { color: #5FCFEF; }

.lc-hero-sub {
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,.78);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 430px;
}

.lc-hero-actions { display:flex; gap:12px; flex-wrap:wrap; }

.lc-hero-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 620px;
}
.lc-hero-img::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: 92%;
  height: 92%;
  margin: auto;
  background: radial-gradient(ellipse at center, rgba(95,207,239,.28) 0%, rgba(0,123,168,.10) 45%, transparent 75%);
  filter: blur(20px);
  z-index: 0;
  border-radius: 50%;
}
.lc-hero-img img {
  position: relative;
  z-index: 1;
  max-height: 92vh;
  height: auto;
  width: 100%;
  max-width: 620px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.38));
}

/* ── 11. CONTAINER ── */
.lc-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 12. SECTION HEADINGS ── */
.lc-section-header { text-align:center; margin-bottom:52px; }
.lc-section-tag {
  display: inline-block;
  color: var(--teal);
  font-size: 12px; font-weight:700;
  text-transform: uppercase; letter-spacing:3px;
  margin-bottom:10px;
}
.lc-section-title {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900;
  color: var(--navy); line-height:1.25; margin-bottom:12px;
}
[data-theme="dark"] .lc-section-title { color: var(--text); }
.lc-section-sub {
  font-size:15px; color:var(--text-2);
  max-width:480px; margin:0 auto; line-height:1.85;
}

/* ── 13. STATS ── */
.lc-stats { background: var(--navy); padding: 56px 0; }
.lc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.lc-stat {
  text-align: center;
  padding: 18px 16px;
  border-inline-end: 1px solid rgba(255,255,255,.14);
}
.lc-stat:last-child { border-inline-end:none; }
.lc-stat-num {
  display: block;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  color: #5FCFEF;
  line-height: 1;
  margin-bottom: 8px;
  direction: ltr;
}
.lc-stat-label { font-size:14px; font-weight:500; color:rgba(255,255,255,.75); }

/* ── 14. SERVICES ── */
.lc-services { padding: 88px 0; background: var(--bg); }
.lc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lc-service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-m);
  padding: 34px 24px 28px;
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .lc-service-card { background:var(--surface); border-color:var(--border); }
.lc-service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t);
}
.lc-service-card:hover::before { transform:scaleX(1); }
.lc-service-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-l); border-color:var(--teal); }

.lc-service-icon {
  width:66px; height:66px;
  background: var(--teal-light);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; color:var(--teal); transition:var(--t);
}
.lc-service-card:hover .lc-service-icon { background:var(--teal); color:var(--white); transform:scale(1.08); }

.lc-service-title { font-size:17px; font-weight:700; color:var(--navy); margin-bottom:10px; line-height:1.4; }
[data-theme="dark"] .lc-service-title { color:var(--text); }
.lc-service-desc { font-size:13.5px; color:var(--muted); line-height:1.85; }

/* ── 15. REVIEWS ── */
.lc-reviews { padding:88px 0; background:var(--surface); }
.lc-reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

.lc-review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-m);
  padding: 28px 24px;
  transition: var(--t);
  display: flex; flex-direction:column;
}
[data-theme="dark"] .lc-review-card { background:var(--dark-bg); }
.lc-review-card:hover { box-shadow:var(--shadow-m); border-color:var(--teal); transform:translateY(-4px); }

.lc-review-stars { color:#F5A623; font-size:17px; letter-spacing:3px; margin-bottom:14px; }
.lc-review-text { font-size:14.5px; color:var(--text-2); line-height:1.85; font-style:italic; flex:1; margin-bottom:18px; }
.lc-review-author { display:flex; align-items:center; gap:12px; margin-top:auto; }
.lc-review-avatar {
  width:44px; height:44px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:17px; font-weight:900; color:#fff; flex-shrink:0;
}
.lc-review-name { font-size:14px; font-weight:700; color:var(--navy); display:block; }
[data-theme="dark"] .lc-review-name { color:var(--text); }
.lc-review-location { font-size:12px; color:var(--muted); display:block; }

/* ── 16. CONTACT ── */
.lc-contact { padding:88px 0; background:var(--bg); }
.lc-contact-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-bottom:36px; }

.lc-contact-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-m);
  padding: 28px 24px;
  transition: var(--t);
}
[data-theme="dark"] .lc-contact-card { background:var(--surface); }
.lc-contact-card:hover { box-shadow:var(--shadow-m); border-color:var(--teal); }

.lc-contact-icon {
  width:48px; height:48px;
  background: var(--teal-light);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); margin-bottom:14px; transition:var(--t);
}
.lc-contact-card:hover .lc-contact-icon { background:var(--teal); color:var(--white); }

.lc-contact-card h3 {
  font-size:15px; font-weight:700; color:var(--navy);
  margin-bottom:10px; padding-bottom:8px;
  border-bottom:1px solid var(--border);
}
[data-theme="dark"] .lc-contact-card h3 { color:var(--text); }
.lc-contact-card p { font-size:14px; color:var(--text-2); line-height:1.85; }

.lc-phones-list { display:flex; flex-direction:column; gap:6px; }
.lc-phones-list a {
  font-size:15px; font-weight:700; color:var(--teal);
  direction:ltr; display:block; transition:var(--t);
}
.lc-phones-list a:hover { color:var(--navy); }

.lc-contact-socials { display:flex; flex-wrap:wrap; gap:9px; }
.lc-contact-social-btn {
  display:inline-flex; align-items:center; padding:8px 16px;
  border-radius:var(--r-pill); font-size:13px; font-weight:700;
  font-family:var(--font); color:var(--white);
  text-decoration:none; transition:var(--t);
}
.lc-contact-social-btn:hover { transform:translateY(-2px); opacity:.88; }
.lc-contact-social-btn--wa { background:#25D366; }
.lc-contact-social-btn--fb { background:#1877F2; }
.lc-contact-social-btn--ig { background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285AEB 90%); }
.lc-contact-social-btn--tk { background:#111; }

.lc-map-wrap { border-radius:var(--r-m); overflow:hidden; border:1.5px solid var(--border); }

/* ── 17. BOOKING HERO ── */
.lc-booking-hero {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy) 55%, #0D5B82);
  padding: calc(var(--header-h) + 48px) 24px 70px;
  text-align: center; min-height: 45vh;
  display: flex; align-items: center;
}
.lc-booking-hero-inner { max-width:620px; margin:0 auto; }
.lc-booking-title { font-size:clamp(28px, 4vw, 50px); font-weight:900; color:#FFF; margin-bottom:14px; animation:lc-fade-up .6s .15s ease both; }
.lc-booking-sub { font-size:16px; color:rgba(255,255,255,.75); max-width:460px; margin:0 auto 24px; line-height:1.85; animation:lc-fade-up .6s .28s ease both; }
.lc-booking-phones {
  display:flex; align-items:center; justify-content:center;
  gap:10px; flex-wrap:wrap; animation:lc-fade-up .6s .40s ease both;
}
.lc-booking-phones span { color:rgba(255,255,255,.55); font-size:13px; }
.lc-booking-phones a { color:#5FCFEF; font-size:15px; font-weight:700; direction:ltr; transition:var(--t); }
.lc-booking-phones a:hover { color:#FFF; }
.lc-booking-hero .lc-badge { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.22); color:#A8DCED; }

/* ── 18. THANK YOU ── */
.lc-thankyou { min-height:calc(100vh - var(--header-h)); display:flex; align-items:center; justify-content:center; padding:70px 24px; background:var(--surface); }
.lc-thankyou-inner {
  background:var(--bg); border-radius:var(--r-l); padding:56px 40px;
  text-align:center; max-width:500px; width:100%;
  box-shadow:var(--shadow-l); border:1px solid var(--border);
  animation:lc-scale-in .6s ease both;
}
[data-theme="dark"] .lc-thankyou-inner { background:var(--surface); }
.lc-thankyou-icon {
  width:86px; height:86px;
  background:linear-gradient(135deg, var(--teal), var(--navy));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 26px; color:#FFF;
  box-shadow:0 10px 36px rgba(0,123,168,.38);
  animation:lc-scale-in .5s ease both, lc-glow-pulse 2s 1s ease-in-out infinite;
}
.lc-thankyou-title { font-size:clamp(26px,3.5vw,36px); font-weight:900; color:var(--navy); margin-bottom:14px; }
[data-theme="dark"] .lc-thankyou-title { color:var(--text); }
.lc-thankyou-sub { font-size:16px; color:var(--text-2); line-height:1.85; margin-bottom:32px; }
.lc-thankyou-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── 19. FOOTER ── */
.site-footer { background: var(--dark-bg); padding-top:60px; }
[data-theme="dark"] .site-footer { background:#050D14; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 36px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 52px;
}
.footer-logo    { height:44px; width:auto; margin-bottom:14px; filter:brightness(0) invert(1); }
.footer-tagline { font-size:13.5px; color:rgba(255,255,255,.52); line-height:1.85; }
.footer-heading { font-size:11px; font-weight:700; color:#5FCFEF; margin-bottom:16px; text-transform:uppercase; letter-spacing:2px; padding-bottom:9px; border-bottom:1px solid rgba(255,255,255,.08); }

.footer-nav { display:flex; flex-direction:column; gap:9px; }
.footer-nav a { font-size:13.5px; color:rgba(255,255,255,.58); transition:var(--t); }
.footer-nav a:hover { color:#5FCFEF; padding-inline-end:5px; }

.footer-phones { display:flex; flex-direction:column; gap:7px; }
.footer-phones li a { font-size:13.5px; color:rgba(255,255,255,.62); transition:var(--t); direction:ltr; display:block; }
.footer-phones li a:hover { color:#5FCFEF; }

.social-links { display:flex; gap:9px; flex-wrap:wrap; }
.social-btn {
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:white; transition:var(--t);
}
.social-btn:hover { transform:translateY(-3px); opacity:.88; }
.social-btn--fb { background:#1877F2; }
.social-btn--ig { background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-btn--tk { background:#111; border:1px solid rgba(255,255,255,.18); }
.social-btn--wa { background:#25D366; }

.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding:18px 24px; text-align:center; font-size:12.5px; color:rgba(255,255,255,.36); }

/* ── 20. ACCESSIBILITY PANEL (right side, fixed, no layout impact) ── */
.lc-a11y-fab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
}

/* The tab button sticking out from the right edge */
.lc-a11y-toggle {
  width: 36px;
  min-height: 80px;
  background: var(--teal);
  color: var(--white);
  border-radius: 8px 0 0 8px; /* RTL: rounded on left side */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: -3px 0 16px rgba(0,0,0,.18);
  cursor: pointer;
  border: none;
  transition: background var(--t);
  order: 2; /* appears after panel in DOM */
}
.lc-a11y-toggle:hover { background: var(--navy); }
.lc-a11y-toggle svg { flex-shrink:0; }
.lc-a11y-toggle-label {
  font-size: 10px; font-weight:700; color:var(--white);
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 1px;
}

/* The sliding panel */
.lc-a11y-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px 0 0 12px; /* RTL: rounded on left */
  padding: 20px 16px;
  box-shadow: -4px 0 24px rgba(0,0,0,.14);
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width .3s ease, opacity .25s ease, padding .3s ease;
  order: 1;
  min-width: 0;
}
[data-theme="dark"] .lc-a11y-panel { background:var(--surface); }

.lc-a11y-panel.is-open {
  width: 250px;
  opacity: 1;
  padding: 20px 16px;
}

.lc-a11y-panel-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.lc-a11y-close {
  width:24px; height:24px; border-radius:50%;
  background: var(--surface); color: var(--text-2);
  border:none; cursor:pointer; font-size:13px; line-height:1;
  display:flex; align-items:center; justify-content:center; transition:var(--t);
}
.lc-a11y-close:hover { background: var(--teal); color:#fff; }

.lc-a11y-btns--3 { display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.lc-a11y-btns--3 .lc-a11y-btn { display:flex; align-items:center; justify-content:center; gap:5px; padding:9px 0; }

.lc-a11y-stack { display:flex; flex-direction:column; gap:6px; }
.lc-a11y-pill {
  display:flex; align-items:center; gap:8px;
  padding: 9px 12px; background: var(--surface);
  border:1px solid var(--border); border-radius:10px;
  color: var(--text); font-family:var(--font);
  font-size:12.5px; font-weight:600; cursor:pointer;
  transition: var(--t); text-align:right; width:100%;
}
.lc-a11y-pill-icon {
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:50%;
  background: var(--bg); color: var(--teal); font-size:13px; font-weight:800;
  border:1px solid var(--border);
}
.lc-a11y-pill:hover { background: var(--teal-light); border-color: var(--teal); }
.lc-a11y-pill.is-active { background: var(--teal); color:#fff; border-color: var(--teal); }
.lc-a11y-pill.is-active .lc-a11y-pill-icon { background:#fff; color: var(--teal); border-color:#fff; }

.lc-a11y-reset-all {
  display:block; width:100%; margin-top:6px;
  padding: 9px 0; background: transparent;
  border:1px dashed var(--border); border-radius:10px;
  color: var(--muted); font-family:var(--font);
  font-size:12px; font-weight:700; cursor:pointer; transition:var(--t);
}
.lc-a11y-reset-all:hover { color: var(--teal); border-color: var(--teal); background: var(--teal-light); }

/* ── VISION MODES ── */
[data-vision-contrast="on"] {
  --text:#000 !important; --text-2:#000 !important;
  --bg:#fff !important; --surface:#fff !important;
  --border:#000 !important; --muted:#000 !important;
}
[data-vision-contrast="on"][data-theme="dark"] {
  --text:#fff !important; --text-2:#fff !important;
  --bg:#000 !important; --surface:#000 !important; --dark-bg:#000 !important;
  --border:#fff !important; --muted:#fff !important;
}
[data-vision-contrast="on"] body { filter: contrast(1.25); }

[data-vision-invert="on"] body { filter: invert(1) hue-rotate(180deg); }
[data-vision-invert="on"] img,
[data-vision-invert="on"] video,
[data-vision-invert="on"] .header-logo,
[data-vision-invert="on"] .lc-hero-img img { filter: invert(1) hue-rotate(180deg); }

[data-vision-readable="on"] *,
[data-vision-readable="on"] body {
  font-family: 'Tahoma','Segoe UI','Cairo', Arial, sans-serif !important;
  letter-spacing: .3px !important;
  word-spacing: 2px !important;
  line-height: 1.95 !important;
}

[data-vision-links="on"] a:not(.lc-btn):not(.header-book-btn):not(.header-logo):not(.nav-link) {
  text-decoration: underline wavy var(--teal) !important;
  text-underline-offset: 3px;
  background: rgba(0,123,168,.10) !important;
  padding: 0 4px; border-radius: 4px;
}

[data-vision-motion="on"] *,
[data-vision-motion="on"] *::before,
[data-vision-motion="on"] *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.lc-a11y-panel-title {
  font-size: 11px; font-weight:700; color:var(--muted);
  text-transform:uppercase; letter-spacing:2px;
  margin-bottom: 16px; white-space:nowrap;
}

/* Font size row */
.lc-a11y-row { margin-bottom:18px; }
.lc-a11y-row-label { font-size:12px; font-weight:600; color:var(--text-2); margin-bottom:8px; white-space:nowrap; }
.lc-a11y-btns { display:flex; gap:6px; }
.lc-a11y-btn {
  flex:1; padding:7px 0;
  background: var(--surface); border:1px solid var(--border);
  border-radius:var(--r-s); color:var(--text); font-family:var(--font);
  font-size:13px; font-weight:700; cursor:pointer; transition:var(--t);
  white-space:nowrap;
}
.lc-a11y-btn:hover { background:var(--teal); color:var(--white); border-color:var(--teal); }
.lc-a11y-btn.is-active { background:var(--teal); color:var(--white); border-color:var(--teal); }

/* Contrast toggle */
.lc-a11y-contrast-btn {
  width:100%;
  padding: 9px 0;
  background: var(--surface); border:1px solid var(--border);
  border-radius:var(--r-s); color:var(--text); font-family:var(--font);
  font-size:12px; font-weight:700; cursor:pointer; transition:var(--t);
  display:flex; align-items:center; justify-content:center; gap:6px;
  white-space:nowrap;
}
.lc-a11y-contrast-btn:hover { background:var(--teal); color:var(--white); border-color:var(--teal); }
.lc-a11y-contrast-btn.is-active { background:var(--navy); color:var(--white); border-color:var(--navy); }

/* ── 21. FLUENT FORMS STYLING ── */
.lc-form-wrap { padding:52px 24px 72px; background:var(--surface); }
.lc-form-card {
  background:var(--bg); border-radius:var(--r-l); padding:44px 48px;
  box-shadow:var(--shadow-l); max-width:660px; margin:0 auto;
  border:1px solid var(--border); animation:lc-fade-up .7s .1s ease both;
}
[data-theme="dark"] .lc-form-card { background:var(--surface); }

.lc-form-card .ff-el-group { margin-bottom:20px !important; }
.lc-form-card .ff-el-form-control,
.lc-form-card input[type="text"],
.lc-form-card input[type="email"],
.lc-form-card input[type="tel"],
.lc-form-card input[type="number"],
.lc-form-card textarea,
.lc-form-card select {
  width:100% !important;
  border:1.5px solid var(--border) !important;
  border-radius:var(--r-s) !important;
  padding:12px 16px !important;
  font-family:var(--font) !important;
  font-size:15px !important;
  color:var(--text) !important;
  background:var(--bg) !important;
  transition:border-color var(--t),box-shadow var(--t);
  min-height:48px; direction:rtl;
}
.lc-form-card input:focus,.lc-form-card textarea:focus {
  border-color:var(--teal) !important; outline:none !important;
  box-shadow:0 0 0 3px rgba(0,123,168,.12) !important;
}
.lc-form-card label {
  font-family:var(--font) !important; font-size:14px !important;
  font-weight:600 !important; color:var(--text) !important;
  margin-bottom:6px !important; display:block !important;
}
.lc-form-card .ff-btn-submit,
.lc-form-card button[type="submit"] {
  background:var(--teal) !important; color:var(--white) !important;
  font-family:var(--font) !important; font-size:16px !important;
  font-weight:700 !important; padding:14px 44px !important;
  border-radius:var(--r-pill) !important; border:none !important;
  cursor:pointer !important; width:100% !important;
  margin-top:8px !important; transition:var(--t) !important;
  box-shadow:0 5px 20px rgba(0,123,168,.30) !important;
}
.lc-form-card .ff-btn-submit:hover { background:var(--navy) !important; transform:translateY(-2px) !important; }

/* ── 22. ELEMENTOR COMPAT ── */
.elementor-section.elementor-section-stretched { margin-left:0!important; margin-right:0!important; }
.elementor-widget-html .elementor-widget-container { padding:0!important; }
.elementor-section .elementor-container { max-width:var(--max-w)!important; }

/* ── 23. RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid        { grid-template-columns:1fr 1fr; gap:28px; }
  .lc-services-grid   { grid-template-columns:1fr 1fr; }
  .lc-reviews-grid    { grid-template-columns:1fr 1fr; }
  .lc-contact-grid    { grid-template-columns:1fr; }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  :root { --header-h: 56px; }

  /* Float book btn visible, desktop btn hidden */
  .lc-float-book { display:inline-flex; }
  .header-book-btn { display:none; }

  /* Header — tight */
  .header-inner { padding: 0 14px; }
  .header-logo img { height: 36px; max-width: 110px; }

  /* A11y panel — smaller */
  .lc-a11y-toggle { width: 30px; min-height: 70px; }
  .lc-a11y-panel.is-open { width: 215px; padding: 16px 12px; }

  /* ── HERO stacked ── */
  .lc-hero { min-height: auto; overflow-x: hidden; }
  .lc-hero-inner {
    grid-template-columns: 1fr;
    padding: calc(var(--header-h) + 20px) 0 0;
    min-height: auto;
    text-align: center;
    gap: 0;
    width: 100%;
  }
  .lc-hero-content  { padding: 0 18px 28px; }
  .lc-hero-title    { font-size: 28px; }
  .lc-hero-sub      { margin: 0 auto 28px; max-width: 100%; font-size: 14px; }
  .lc-hero-actions  { justify-content: center; flex-direction: column; align-items: center; gap: 10px; }
  .lc-hero-actions .lc-btn { width: 100%; max-width: 280px; justify-content: center; }
  .lc-hero-img      { order: -1; width: 100%; min-height: 0; overflow: visible; padding-top: 8px; }
  .lc-hero-img img  { max-height: 70vw; width: auto; max-width: 90%; object-fit: contain; animation: lc-scale-in .8s .35s ease both; }

  /* ── STATS 2×2 ── */
  .lc-stats { padding: 40px 0; }
  .lc-stats-grid { grid-template-columns: 1fr 1fr; padding: 0; }
  .lc-stat {
    border-inline-end: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 18px 10px;
  }
  .lc-stat:nth-child(odd)  { border-inline-end: 1px solid rgba(255,255,255,.12); }
  .lc-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* ── GRIDS → single col ── */
  .lc-services-grid { grid-template-columns: 1fr; }
  .lc-reviews-grid  { grid-template-columns: 1fr; }
  .lc-contact-grid  { grid-template-columns: 1fr; }

  /* ── SECTIONS — flush side padding ── */
  .lc-services  { padding: 52px 0; }
  .lc-reviews   { padding: 52px 0; }
  .lc-contact   { padding: 52px 0; }
  .lc-container { padding: 0 16px; }

  /* ── BOOKING HERO ── */
  .lc-booking-hero {
    padding: calc(var(--header-h) + 32px) 16px 48px;
    min-height: auto;
  }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 16px 44px; }
  .site-footer { padding-bottom: 76px; }

  /* ── FORMS ── */
  .lc-form-card { padding: 24px 16px; }
  .lc-thankyou-inner { padding: 36px 18px; }

  /* ── SECTION HEADER ── */
  .lc-section-header { margin-bottom: 34px; }
  .lc-section-title  { font-size: 22px; }
}

@media (max-width: 480px) {
  .lc-btn { padding:12px 24px; font-size:14px; }
  .lc-float-book { padding:12px 24px; font-size:14px; bottom:16px; }
  .lc-hero-title { font-size:30px; }
  .lc-stat-num   { font-size:32px; }
  .lc-section-title { font-size:22px; }
  .lc-service-card { padding:26px 18px 22px; }
  .lc-a11y-panel.is-open { width:200px; }
}

/* ── 24. FOCUS ── */
*:focus-visible { outline:3px solid var(--teal); outline-offset:2px; }
