/* ============================================================
   assets/css/style.css
   مشاعل سبا — Earthy & Luxe Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Primary Palette (60%) – Creams & Stones */
  --cream-50:  #FDFAF7;
  --cream-100: #F8F5F1;
  --cream-200: #F2EEE9;
  --cream-300: #E7E2DB;
  --cream-400: #DAD3CA;

  /* Secondary Palette (30%) – Walnut Browns */
  --brown-300: #A07855;
  --brown-400: #8B6A4F;
  --brown-500: #7A5B42;
  --brown-600: #6A4E3A;
  --brown-700: #5A4333;
  --brown-800: #3D2B20;

  /* Accent Palette (10%) – Muted Gold */
  --gold-200: #D4B483;
  --gold-300: #C8A96A;
  --gold-400: #B88B4A;
  --gold-500: #A9773F;
  --gold-600: #C4915B;

  /* Text */
  --text-primary:   #2B2B2B;
  --text-secondary: #555555;
  --text-muted:     #777777;
  --text-light:     #999999;

  /* Status */
  --status-success: #4C7A5A;
  --status-warning: #C28B2C;
  --status-danger:  #B84A4A;
  --status-info:    #6A8FA3;

  /* Spacing & Radius */
  --container-max: 1320px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-btn: 12px;
  --radius-card:20px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(90,67,51,.08);
  --shadow-md:  0 6px 24px rgba(90,67,51,.12);
  --shadow-lg:  0 12px 40px rgba(90,67,51,.18);
  --shadow-xl:  0 20px 60px rgba(90,67,51,.22);

  /* Transitions */
  --trans-fast:   all .15s ease;
  --trans-normal: all .3s ease;
  --trans-slow:   all .5s ease;

  /* Legacy compat (used by PHP inline style) */
  --primary-color:   var(--gold-400);
  --secondary-color: var(--gold-300);
}

/* ══════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background-color: var(--cream-100);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--trans-normal);
  color: inherit;
}

/* ── Headings ── */
h1,.h1 { font-size: clamp(2rem,5vw,2.75rem); font-weight:800; line-height:1.2; }
h2,.h2 { font-size: clamp(1.75rem,4vw,2.25rem); font-weight:700; line-height:1.3; }
h3,.h3 { font-size: clamp(1.4rem,3vw,1.75rem); font-weight:700; }
h4,.h4 { font-size: clamp(1.15rem,2.5vw,1.35rem); font-weight:600; }
h5,.h5 { font-size: clamp(1rem,2vw,1.15rem); font-weight:600; }
h6,.h6 { font-size: clamp(.875rem,1.5vw,1rem); font-weight:500; }

/* ── Utility Classes ── */
.text-gold       { color: var(--gold-400) !important; }
.text-brown      { color: var(--brown-500) !important; }
.text-cream      { color: var(--cream-100) !important; }
.bg-cream        { background-color: var(--cream-100) !important; }
.bg-cream-alt    { background-color: var(--cream-200) !important; }
.bg-brown-deep   { background-color: var(--brown-700) !important; }
.border-gold     { border-color: var(--gold-400) !important; }

/* Legacy compat */
.text-primary-custom   { color: var(--gold-400) !important; }
.text-secondary-custom { color: var(--brown-400) !important; }
.bg-primary-custom     { background-color: var(--gold-400) !important; }
.bg-secondary-custom   { background-color: var(--brown-400) !important; }
.bg-light-green        { background-color: var(--cream-200) !important; }
.bg-beige              { background-color: var(--cream-100) !important; }

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn-spa-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(184,139,74,.35);
  transition: var(--trans-normal);
  letter-spacing: .02em;
}
.btn-spa-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,139,74,.45);
}

.btn-spa-outline {
  background: transparent;
  color: var(--gold-400);
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--trans-normal);
}
.btn-spa-outline:hover {
  background: var(--gold-400);
  color: #fff;
  transform: translateY(-2px);
}

.btn-spa-brown {
  background: linear-gradient(135deg, var(--brown-400), var(--brown-600));
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(106,78,58,.3);
  transition: var(--trans-normal);
}
.btn-spa-brown:hover {
  background: linear-gradient(135deg, var(--brown-500), var(--brown-700));
  color: #fff;
  transform: translateY(-2px);
}

/* Legacy btn-custom */
.btn-custom {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 11px 28px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(184,139,74,.3);
  transition: var(--trans-normal);
}
.btn-custom:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,139,74,.4);
}

/* Ripple Effect */
.btn-spa-primary, .btn-custom, .btn-spa-brown {
  position: relative;
  overflow: hidden;
}
.btn-spa-primary::after, .btn-custom::after, .btn-spa-brown::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .5s, height .5s, opacity .5s;
  opacity: 0;
}
.btn-spa-primary:active::after, .btn-custom:active::after, .btn-spa-brown:active::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.spa-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1050;
  padding: 20px 0;
  transition: var(--trans-slow);
  background: transparent;
}

.spa-navbar.scrolled {
  padding: 12px 0;
  background: rgba(61,43,32,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.spa-navbar .navbar-brand {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .02em;
}
.spa-navbar .navbar-brand span {
  color: var(--gold-300);
}

.spa-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
}
.spa-navbar .nav-link:hover {
  color: var(--gold-300) !important;
  background: rgba(255,255,255,.08);
}

.spa-navbar .navbar-toggler {
  border: 1px solid rgba(200,169,106,.5);
  padding: 6px 10px;
}
.spa-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200,169,106,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown-800);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61,43,32,.65) 0%,
    rgba(61,43,32,.45) 50%,
    rgba(61,43,32,.75) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,106,.2);
  border: 1px solid rgba(200,169,106,.4);
  color: var(--gold-200);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--gold-300);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(200,169,106,.2);
}

.scroll-down {
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  display: inline-block;
  margin-top: 32px;
  transition: var(--trans-fast);
}
.scroll-down:hover { color: var(--gold-300); }

@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateY(0); }
  40%                  { transform: translateY(-12px); }
  60%                  { transform: translateY(-6px); }
}

/* ══════════════════════════════════════════════════════
   SECTION TITLES
══════════════════════════════════════════════════════ */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--gold-400);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '—';
  margin: 0 8px;
  opacity: .5;
}

.section-title h2 {
  color: var(--brown-700);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title .title-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to left, var(--gold-300), var(--gold-500));
  margin: 0 auto;
  border-radius: 2px;
}

.section-title p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════ */
.about-section {
  padding: clamp(60px,8vw,100px) 0;
  background: var(--cream-50);
}

.about-visual {
  position: relative;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-300), var(--cream-400));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-visual-icon {
  font-size: 7rem;
  color: var(--brown-400);
  opacity: .25;
}

.about-visual-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(61,43,32,.85);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  font-size: .85rem;
}
.about-visual-badge strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-300);
  font-weight: 800;
}

.about-check-list {
  list-style: none;
  padding: 0;
}
.about-check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-300);
}
.about-check-list li:last-child { border-bottom: none; }
.about-check-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.stat-item {
  text-align: center;
  flex: 1;
  padding: 16px;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-400);
}
.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brown-600);
  display: block;
}
.stat-item span.stat-num span { color: var(--gold-400); }
.stat-item p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════════════════════ */
.why-us {
  padding: clamp(60px,8vw,100px) 0;
  background: var(--cream-200);
}

.feature-box {
  background: var(--cream-50);
  padding: 36px 28px;
  border-radius: var(--radius-card);
  text-align: center;
  border: 1px solid var(--cream-400);
  box-shadow: var(--shadow-sm);
  transition: var(--trans-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(200,169,106,.12), transparent);
  border-radius: 0 var(--radius-card) 0 100%;
  transition: var(--trans-normal);
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,106,.4);
}
.feature-box:hover::before {
  width: 120px;
  height: 120px;
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--cream-300), var(--cream-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--trans-normal);
}
.feature-box:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}
.feature-icon {
  font-size: 1.75rem;
  color: var(--brown-500);
  transition: var(--trans-normal);
}
.feature-box:hover .feature-icon { color: #fff; }

.feature-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-700);
  margin-bottom: 10px;
}
.feature-box p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════ */
.services-section {
  padding: clamp(60px,8vw,100px) 0;
  background: var(--cream-100);
}

.service-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-400);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-normal);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200,169,106,.4);
}

.service-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.service-img-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--cream-300), var(--cream-400));
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-placeholder i {
  font-size: 4rem;
  color: var(--brown-400);
  opacity: .35;
}

.service-card .card-body {
  padding: 24px;
  background: var(--cream-50);
}
.service-card .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-700);
  margin-bottom: 8px;
}
.service-card .card-text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card hr {
  border-color: var(--cream-400);
  margin: 16px 0;
}
.service-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-500);
}
.service-duration {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Service Modal */
.modal-content {
  border: none;
  border-radius: var(--radius-xl);
  background: var(--cream-50);
  overflow: hidden;
}
.modal-header {
  background: var(--brown-700);
  color: #fff;
  border: none;
  padding: 20px 28px;
}
.modal-header .btn-close {
  filter: invert(1) opacity(.8);
}
.modal-header .modal-title { color: #fff; }
.modal-body { padding: 28px; }
.modal-footer {
  border-top: 1px solid var(--cream-300);
  padding: 16px 28px;
  background: var(--cream-100);
}

/* ══════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════ */
.faq-section {
  padding: clamp(60px,8vw,100px) 0;
  background: var(--cream-200);
}

.accordion-item {
  border: 1px solid var(--cream-400);
  margin-bottom: 12px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  background: var(--cream-50);
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brown-700);
  background: var(--cream-50);
  padding: 18px 24px;
}
.accordion-button:not(.collapsed) {
  color: var(--gold-500);
  background: var(--cream-100);
  box-shadow: inset 0 -1px 0 var(--cream-400);
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(200,169,106,.2);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B6A4F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B88B4A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  padding: 16px 24px 20px;
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.8;
  background: var(--cream-50);
}

/* ══════════════════════════════════════════════════════
   BOOKING SECTION
══════════════════════════════════════════════════════ */
.booking-section {
  padding: clamp(60px,8vw,100px) 0;
  background: var(--brown-700);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A96A' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}

.booking-section .booking-info h2 {
  color: #fff;
  font-weight: 800;
}
.booking-section .booking-info p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
}
.booking-section .booking-contact {
  color: rgba(255,255,255,.85);
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}
.booking-section .booking-contact i {
  width: 42px;
  height: 42px;
  background: rgba(200,169,106,.2);
  border: 1px solid rgba(200,169,106,.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 1rem;
}

.booking-form {
  background: var(--cream-50);
  padding: clamp(24px,4vw,44px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(200,169,106,.15);
  position: relative;
  z-index: 1;
}

/* Form Elements */
.form-label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--brown-600);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  font-family: 'Cairo', sans-serif;
  border: 1.5px solid var(--cream-400);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  min-height: 48px;
  background: var(--cream-100);
  color: var(--text-primary);
  font-size: .93rem;
  transition: var(--trans-fast);
}
.form-control::placeholder { color: var(--text-light); }
.form-control:focus,
.form-select:focus {
  border-color: var(--gold-400);
  background: var(--cream-50);
  box-shadow: 0 0 0 3px rgba(200,169,106,.2);
  outline: none;
}

textarea.form-control { resize: vertical; min-height: 100px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--brown-800);
  color: rgba(255,255,255,.8);
  padding: clamp(50px,8vw,80px) 0 24px;
}

.footer-brand h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold-300); }
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.8;
}

.footer-title {
  color: var(--gold-300);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,169,106,.2);
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans-fast);
}
.footer-links li a::before {
  content: '›';
  color: var(--gold-400);
  font-size: 1.1rem;
}
.footer-links li a:hover {
  color: var(--gold-300);
  padding-right: 4px;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--trans-normal);
}
.social-icons a:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}

/* ══════════════════════════════════════════════════════
   WHATSAPP FIXED BUTTON
══════════════════════════════════════════════════════ */
.whatsapp-fixed {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 1000;
  transition: var(--trans-normal);
}
.whatsapp-fixed:hover {
  transform: scale(1.12) rotate(-5deg);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37,211,102,.55);
}

/* ══════════════════════════════════════════════════════
   SKELETON LOADING
══════════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--cream-300) 25%, var(--cream-200) 50%, var(--cream-300) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .spa-navbar .navbar-collapse {
    background: rgba(61,43,32,.97);
    backdrop-filter: blur(12px);
    margin-top: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(200,169,106,.15);
  }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 calc(50% - 12px); }
}

@media (max-width: 767.98px) {
  .booking-form { padding: 24px 20px; }
  .about-visual { height: 260px; }
  .feature-box { padding: 28px 20px; }
  .stats-row { gap: 12px; }
  .stat-item { flex: 1 1 100%; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .section-title { margin-bottom: 40px; }
}

@media (max-width: 575.98px) {
  .booking-form { padding: 20px 16px; }
  .hero-subtitle { font-size: .95rem; }
  .whatsapp-fixed { bottom: 20px; left: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════════════
   MISC UTILITIES
══════════════════════════════════════════════════════ */
.spa-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.spa-badge-gold    { background: rgba(200,169,106,.15); color: var(--gold-500); border: 1px solid rgba(200,169,106,.3); }
.spa-badge-brown   { background: rgba(139,106,79,.12); color: var(--brown-600); border: 1px solid rgba(139,106,79,.25); }
.spa-badge-success { background: rgba(76,122,90,.12); color: var(--status-success); border: 1px solid rgba(76,122,90,.25); }
.spa-badge-warning { background: rgba(194,139,44,.12); color: var(--status-warning); border: 1px solid rgba(194,139,44,.25); }
.spa-badge-danger  { background: rgba(184,74,74,.12); color: var(--status-danger); border: 1px solid rgba(184,74,74,.25); }

/* SweetAlert override */
.swal2-popup { border-radius: var(--radius-xl) !important; font-family: 'Cairo', sans-serif !important; }
.swal2-title { font-family: 'Cairo', sans-serif !important; color: var(--brown-700) !important; }
.swal2-confirm { background: linear-gradient(135deg, var(--gold-300), var(--gold-500)) !important; border-radius: var(--radius-btn) !important; box-shadow: 0 4px 14px rgba(184,139,74,.3) !important; }
.swal2-cancel  { background: var(--cream-300) !important; color: var(--text-secondary) !important; border-radius: var(--radius-btn) !important; }

/* ── Navbar Menu ── */
.navbar-menu { list-style: none; padding: 0; margin: 0; }
.navbar-menu .nav-link.active { color: var(--gold-300) !important; }

/* ── Hero padding offset for fixed navbar ── */
.hero { padding-top: 80px; }

/* ── Booking Info text colour ── */
.booking-info h2 { color: #fff; font-weight: 800; }
.booking-info p   { color: rgba(255,255,255,.78); font-size: 1.05rem; }

/* ── Booking contact row ── */
.booking-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  font-weight: 600;
}
.booking-contact i {
  width: 44px;
  height: 44px;
  background: rgba(200,169,106,.18);
  border: 1px solid rgba(200,169,106,.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.booking-contact a { color: var(--gold-300); }
.booking-contact a:hover { color: var(--gold-200); }

/* ── Span Badge (used in booking section) ── */
.span-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.spa-badge-gold  { background: rgba(200,169,106,.2); color: var(--gold-300); border: 1px solid rgba(200,169,106,.35); }
.spa-badge-brown { background: rgba(139,106,79,.15); color: var(--cream-200); border: 1px solid rgba(139,106,79,.3); }

/* ── Accordion RTL arrow fix ── */
.accordion-button::after {
  margin-right: auto;
  margin-left: 0;
}

/* ── Bootstrap overrides for RTL breadcrumb ── */
.breadcrumb-item + .breadcrumb-item::before { content: "‹"; }
.breadcrumb a { color: var(--brown-500); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ── Improved mobile hero layout ── */
@media (max-width: 767.98px) {
  .hero { padding-top: 70px; min-height: 100svh; }
  .hero-video-wrapper { border-radius: var(--radius-lg); }
  .booking-contact { font-size: .95rem; }
  .stats-row { gap: 10px; }
}

/* ── Scrollbar thin style (webkit) ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-200); }
::-webkit-scrollbar-thumb { background: var(--brown-400); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-400); }

/* ── Focus ring override ── */
*:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }

/* ── Text brown utility ── */
.text-brown   { color: var(--brown-500) !important; }
.text-gold    { color: var(--gold-400) !important; }
.fw-semibold  { font-weight: 600 !important; }
