/* ============================================================
   assets/css/style.css
   مركز تاج سبا — Luxury Wellness & Spa Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ── Color System & CSS Variables ── */
:root {
  /* Core Brand Palette */
  --spa-ivory:       #FFF9F3; /* 55% Main Background & Large Spaces */
  --spa-cream:       #F4E8DA; /* 20% Secondary Backgrounds & Cards */
  --spa-peach:       #DFAFA0; /* 10% Primary Buttons & Highlighting */
  --spa-sage:        #B8C8B0; /* 10% Natural Accents, Badges & Secondary Icons */
  --spa-gold:        #D9A86C; /*  5% Champagne Gold Accents, Dividers & Prices */

  /* Neutral & Text Colors */
  --spa-brown:       #4A3832; /* Main Headings, Navbar Text, Primary Labels */
  --spa-taupe:       #8C7870; /* Body Copy, Subtitles & Secondary Information */
  --spa-white:       #FFFFFF; /* Pure White Cards, Form Inputs & Floating Elements */
  --spa-border:      #F0DED0; /* Soft Warm Card & Section Borders */
  --spa-input-border:#E6D5C5; /* Form Input Border Color */

  /* State Colors */
  --spa-success:     #4C7A5A;
  --spa-warning:     #D9A86C;
  --spa-danger:      #C86A5A;

  /* Spacing & Radii */
  --container-max:   1280px;
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       16px;
  --radius-xl:       24px;
  --radius-pill:     50px;
  --radius-btn:      14px;
  --radius-card:     18px;

  /* Shadows (Soft & Subtle) */
  --shadow-subtle:   0 4px 16px rgba(74, 56, 50, 0.04);
  --shadow-card:     0 8px 24px rgba(74, 56, 50, 0.06);
  --shadow-hover:    0 16px 36px rgba(74, 56, 50, 0.10);
  --shadow-btn:      0 6px 20px rgba(223, 175, 160, 0.35);
  --shadow-nav:      0 4px 20px rgba(74, 56, 50, 0.05);

  /* Transitions */
  --trans-fast:      all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-normal:    all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow:      all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Legacy Backward Compatibility Aliases */
  --primary-color:   var(--spa-peach);
  --secondary-color: var(--spa-gold);
  --cream-50:        var(--spa-ivory);
  --cream-100:       var(--spa-ivory);
  --cream-200:       var(--spa-cream);
  --brown-500:       var(--spa-brown);
  --brown-700:       var(--spa-brown);
  --gold-400:        var(--spa-gold);
}

/* ══════════════════════════════════════════════════════
   RESET & GLOBAL BASICS
══════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--spa-ivory);
  color: var(--spa-taupe);
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

video, iframe {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans-normal);
}

/* ── Typography & Hierarchy ── */
h1, .h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--spa-brown);
  line-height: 1.35;
}

h2, .h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--spa-brown);
  line-height: 1.4;
}

h3, .h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--spa-brown);
  line-height: 1.4;
}

h4, .h4 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--spa-brown);
}

h5, .h5 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--spa-brown);
}

p {
  color: var(--spa-taupe);
  margin-bottom: 1rem;
}

/* Helper Utilities */
.text-brown      { color: var(--spa-brown) !important; }
.text-taupe      { color: var(--spa-taupe) !important; }
.text-peach      { color: var(--spa-peach) !important; }
.text-gold       { color: var(--spa-gold) !important; }
.text-sage       { color: var(--spa-sage) !important; }
.bg-ivory        { background-color: var(--spa-ivory) !important; }
.bg-cream        { background-color: var(--spa-cream) !important; }
.bg-brown        { background-color: var(--spa-brown) !important; }
.border-peach    { border-color: var(--spa-peach) !important; }
.border-gold     { border-color: var(--spa-gold) !important; }
.border-sage     { border-color: var(--spa-sage) !important; }

/* Section Title Standard */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(184, 200, 176, 0.25);
  color: #5C7053;
  border: 1px solid rgba(184, 200, 176, 0.5);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title p {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

.title-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--spa-peach), var(--spa-gold));
  margin: 1rem auto 1.25rem auto;
  border-radius: 3px;
}

.title-divider.ms-0 {
  margin-right: 0 !important;
  margin-left: auto !important;
}

/* ══════════════════════════════════════════════════════
   BUTTONS & BADGES
══════════════════════════════════════════════════════ */
.btn-spa-primary {
  background-color: var(--spa-peach);
  color: var(--spa-brown);
  border: 1px solid var(--spa-peach);
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-btn);
  transition: var(--trans-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-spa-primary:hover,
.btn-spa-primary:focus {
  background-color: #d6a192;
  color: var(--spa-brown);
  border-color: #d6a192;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(223, 175, 160, 0.45);
}

.btn-spa-outline {
  background-color: var(--spa-white);
  color: var(--spa-brown);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-btn);
  padding: 12px 30px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-subtle);
  transition: var(--trans-normal);
  cursor: pointer;
}

.btn-spa-outline:hover,
.btn-spa-outline:focus {
  background-color: var(--spa-cream);
  border-color: var(--spa-peach);
  color: var(--spa-brown);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.btn-spa-gold {
  background-color: var(--spa-gold);
  color: var(--spa-brown);
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 30px;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(217, 168, 108, 0.3);
  transition: var(--trans-normal);
}

.btn-spa-gold:hover {
  background-color: #cd9a5d;
  color: var(--spa-brown);
  transform: translateY(-2px);
}

/* Badges */
.spa-badge-gold {
  background-color: rgba(217, 168, 108, 0.18);
  color: #9C6B2E;
  border: 1px solid rgba(217, 168, 108, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
}

.spa-badge-sage {
  background-color: rgba(184, 200, 176, 0.3);
  color: #4A5B43;
  border: 1px solid rgba(184, 200, 176, 0.5);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.spa-navbar {
  background-color: rgba(255, 249, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 222, 208, 0.7);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: var(--trans-normal);
}

.spa-navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 249, 243, 0.98);
  box-shadow: var(--shadow-nav);
}

.spa-navbar .navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--spa-brown);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spa-navbar .brand-icon {
  width: 40px;
  height: 40px;
  background-color: var(--spa-cream);
  border: 1px solid var(--spa-border);
  color: var(--spa-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.spa-navbar .nav-link {
  color: var(--spa-brown);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: var(--trans-fast);
  position: relative;
}

.spa-navbar .nav-link:hover,
.spa-navbar .nav-link.active {
  color: var(--spa-brown);
  background-color: rgba(244, 232, 218, 0.6);
}

.spa-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--spa-peach);
  border-radius: 2px;
}

.spa-navbar .navbar-toggler {
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  color: var(--spa-brown);
}

.spa-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(223, 175, 160, 0.3);
}

/* ══════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════ */
.hero {
  background-color: var(--spa-ivory);
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(244, 232, 218, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(184, 200, 176, 0.18) 0%, transparent 65%);
  position: relative;
  padding: 90px 0 70px 0;
  overflow: hidden;
}

.hero-bg-decoration {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 232, 218, 0.6) 0%, rgba(255, 249, 243, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(223, 175, 160, 0.2);
  color: var(--spa-brown);
  border: 1px solid rgba(223, 175, 160, 0.4);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--spa-gold);
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--spa-brown);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.hero-title span {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--spa-peach);
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--spa-taupe);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.8;
}

/* Hero Media Wrapper (Image & Video Showcase) */
.hero-media-card {
  background-color: var(--spa-white);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.hero-media-card img,
.hero-media-card video,
.hero-media-card iframe {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--spa-cream);
  color: var(--spa-brown);
  border: 1px solid var(--spa-border);
  border-radius: 50%;
  margin-top: 2rem;
  transition: var(--trans-normal);
  animation: bounceSlow 2s infinite;
}

/* Hero decorative spa image strip */
.hero-img-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.6) brightness(1.05);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.9) 50%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.9) 50%, transparent 100%);
}

@media (max-width: 991px) {
  .hero-img-strip {
    width: 100%;
    height: 100%;
  }
  .hero-img-strip img {
    opacity: 0.06;
  }
}

.scroll-down:hover {
  background-color: var(--spa-peach);
  color: var(--spa-brown);
}

/* Hero Stats Mini Bar */
.hero-stats-bar {
  background-color: var(--spa-cream);
  border-top: 1px solid var(--spa-border);
  border-bottom: 1px solid var(--spa-border);
  padding: 20px 0;
}

.hero-stats-bar .stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-left: 1px solid var(--spa-border);
}

.hero-stats-bar .stat-pill:last-child {
  border-left: none;
}

.hero-stats-bar .stat-pill i {
  font-size: 1.6rem;
  color: var(--spa-gold);
}

.hero-stats-bar .stat-pill strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--spa-brown);
  display: block;
  line-height: 1.2;
}

.hero-stats-bar .stat-pill span {
  font-size: 0.82rem;
  color: var(--spa-taupe);
  font-weight: 600;
}

@media (max-width: 575px) {
  .hero-stats-bar .stat-pill {
    border-left: none;
    border-bottom: 1px solid var(--spa-border);
    padding: 12px 0;
  }
  .hero-stats-bar .stat-pill:last-child {
    border-bottom: none;
  }
}

@keyframes bounceSlow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* ══════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════ */
.about-section {
  background-color: var(--spa-ivory);
  padding: 90px 0;
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--spa-border);
}

.about-image-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: var(--trans-slow);
}

.about-image-card:hover img {
  transform: scale(1.03);
}

.about-badge-floating {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--spa-border);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-floating i {
  font-size: 2rem;
  color: var(--spa-gold);
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1rem;
}

.about-check-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(184, 200, 176, 0.3);
  color: #4A5B43;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

.stat-item {
  background-color: var(--spa-cream);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--spa-gold);
  display: block;
  line-height: 1.2;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--spa-taupe);
  margin-bottom: 0;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════════════════════ */
.why-us {
  background-color: var(--spa-cream); /* 20% Cream Beige Background */
  padding: 90px 0;
  border-top: 1px solid var(--spa-border);
  border-bottom: 1px solid var(--spa-border);
}

.feature-box {
  background-color: var(--spa-white);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  height: 100%;
  transition: var(--trans-normal);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--spa-peach);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: rgba(184, 200, 176, 0.25);
  border: 1px solid rgba(184, 200, 176, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--trans-normal);
}

.feature-box:hover .feature-icon-wrap {
  background-color: rgba(217, 168, 108, 0.2);
  border-color: var(--spa-gold);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--spa-sage);
  transition: var(--trans-fast);
}

.feature-box:hover .feature-icon {
  color: var(--spa-gold);
}

.feature-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--spa-brown);
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 0.92rem;
  color: var(--spa-taupe);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════ */
.services-section {
  background-color: var(--spa-ivory);
  padding: 90px 0;
}

.service-card {
  background-color: var(--spa-white);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: var(--trans-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--spa-peach);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--spa-cream);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-slow);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-duration-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--spa-brown);
  border: 1px solid var(--spa-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.service-card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--spa-brown);
  margin-bottom: 0.5rem;
}

.service-card .card-text {
  font-size: 0.92rem;
  color: var(--spa-taupe);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-price-tag {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--spa-gold);
}

.service-price-tag small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--spa-taupe);
}

.service-card .btn-booking {
  background-color: var(--spa-peach);
  color: var(--spa-brown);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  transition: var(--trans-normal);
}

.service-card .btn-booking:hover {
  background-color: #d6a192;
  color: var(--spa-brown);
}

/* Modals */
.modal-content {
  background-color: var(--spa-ivory);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid var(--spa-border);
  padding: 20px 24px;
  background-color: var(--spa-cream);
}

.modal-title {
  color: var(--spa-brown);
  font-weight: 700;
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  border-top: 1px solid var(--spa-border);
  padding: 16px 24px;
  background-color: var(--spa-cream);
}

/* ══════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════ */
.faq-section {
  background-color: var(--spa-cream);
  padding: 90px 0;
  border-top: 1px solid var(--spa-border);
  border-bottom: 1px solid var(--spa-border);
}

.accordion-item {
  background-color: var(--spa-white);
  border: 1px solid var(--spa-border) !important;
  border-radius: var(--radius-lg) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.accordion-button {
  background-color: var(--spa-white);
  color: var(--spa-brown);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 20px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(244, 232, 218, 0.5);
  color: var(--spa-brown);
}

.accordion-button::after {
  filter: sepia(0.5) hue-rotate(340deg);
}

.accordion-body {
  padding: 20px 24px;
  color: var(--spa-taupe);
  font-size: 0.96rem;
  line-height: 1.8;
  border-top: 1px solid var(--spa-border);
}

/* ══════════════════════════════════════════════════════
   BOOKING FORM SECTION
══════════════════════════════════════════════════════ */
.booking-section {
  background-color: var(--spa-ivory);
  padding: 90px 0;
}

.booking-card {
  background-color: var(--spa-white);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-card);
}

.booking-info-box {
  background-color: var(--spa-cream);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  height: 100%;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: var(--spa-white);
  border: 1px solid var(--spa-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.booking-contact-item i {
  font-size: 1.4rem;
  color: var(--spa-gold);
}

.form-label {
  font-weight: 600;
  color: var(--spa-brown);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  background-color: var(--spa-white);
  border: 1px solid var(--spa-input-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--spa-brown);
  transition: var(--trans-fast);
  min-height: 48px;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--spa-white);
  border-color: var(--spa-peach);
  box-shadow: 0 0 0 4px rgba(223, 175, 160, 0.25);
  outline: none;
}

/* ══════════════════════════════════════════════════════
   CALL TO ACTION (CTA) SECTION
══════════════════════════════════════════════════════ */
.cta-section {
  background-color: var(--spa-cream);
  position: relative;
  padding: 80px 0;
  border-top: 1px solid var(--spa-border);
  overflow: hidden;
  text-align: center;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--spa-brown);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--spa-taupe);
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background-color: var(--spa-brown);
  color: var(--spa-ivory);
  padding: 70px 0 25px 0;
  font-size: 0.94rem;
}

.footer-brand h3 {
  color: var(--spa-ivory);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 249, 243, 0.78);
  line-height: 1.8;
}

.footer-title {
  color: var(--spa-gold);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 2px;
  background-color: var(--spa-peach);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 249, 243, 0.82);
  transition: var(--trans-fast);
}

.footer-links a:hover {
  color: var(--spa-peach);
  padding-right: 6px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--spa-peach);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--trans-normal);
}

.social-icons a:hover {
  background-color: var(--spa-peach);
  color: var(--spa-brown);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 50px;
  text-align: center;
  color: rgba(255, 249, 243, 0.6);
  font-size: 0.88rem;
}

/* ══════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════════ */
.whatsapp-fixed {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1050;
  transition: var(--trans-normal);
  text-decoration: none;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

/* SweetAlert Custom Popup */
.swal-spa {
  border-radius: var(--radius-xl) !important;
  font-family: 'Cairo', sans-serif !important;
  background: var(--spa-ivory) !important;
}

/* ══════════════════════════════════════════════════════
   UTILITY & LAYOUT HELPERS
══════════════════════════════════════════════════════ */
.relative-z {
  position: relative;
  z-index: 2;
}

/* Section universal padding */
section {
  scroll-margin-top: 80px;
}

/* ── Hero top background image support ── */
.hero-with-bg {
  background-image: url('../images/hero_spa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Section title center alignment fix ── */
.section-title {
  text-align: center;
}

/* ── About section alternating on tablet ── */
@media (max-width: 991.98px) {
  .about-section .row > div:first-child {
    order: 2;
  }
  .about-section .row > div:last-child {
    order: 1;
  }
}

/* ── Booking section heading inside form ── */
.booking-card .border-bottom {
  border-color: var(--spa-border) !important;
}

/* ── Floating WhatsApp pulse animation ── */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-fixed {
  animation: waPulse 2.5s ease infinite;
}

.whatsapp-fixed:hover {
  animation: none;
}

/* ── Booking info WhatsApp icon override ── */
.booking-contact-item .fa-whatsapp {
  color: #25D366 !important;
  font-size: 1.6rem !important;
}

/* ── Service card HR separator ── */
.service-card .card-body .border-top {
  border-color: var(--spa-border) !important;
}

/* ── Form select custom arrow ── */
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234A3832' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 0.85rem center;
  background-size: 14px 10px;
  padding-left: 2.5rem;
}

/* ── Stats row responsive ── */
@media (min-width: 576px) and (max-width: 991px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Admin panel does NOT inherit these styles ── */

/* ══════════════════════════════════════════════════════
   MOBILE FIRST RESPONSIVENESS & MEDIA QUERIES
══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .spa-navbar .navbar-collapse {
    background-color: var(--spa-ivory);
    border: 1px solid var(--spa-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 12px;
    box-shadow: var(--shadow-card);
  }

  .spa-navbar .nav-link {
    padding: 10px 16px !important;
  }

  .hero {
    padding: 50px 0 40px 0;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .about-image-card img {
    height: 320px;
  }

  .booking-info-box {
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-item {
    padding: 14px 10px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .about-section,
  .why-us,
  .services-section,
  .faq-section,
  .booking-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .feature-box {
    padding: 24px 18px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 40px 0 30px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .btn-spa-primary,
  .btn-spa-outline {
    width: 100%;
    min-height: 50px;
    padding: 12px 20px;
  }

  .d-flex.gap-3.flex-wrap {
    flex-direction: column;
    align-items: stretch !important;
  }

  .d-flex.gap-3.flex-wrap a,
  .d-flex.gap-3.flex-wrap button {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-media-card {
    padding: 8px;
  }

  .about-badge-floating {
    bottom: 12px;
    right: 12px;
    padding: 12px 16px;
  }

  .whatsapp-fixed {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 18px;
    left: 18px;
  }

  .footer {
    padding: 50px 0 20px 0;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }

  .booking-card {
    padding: 20px 16px;
  }

  .booking-info-box {
    padding: 20px 16px;
  }

  .service-card .card-body {
    padding: 18px;
  }

  .modal-body {
    padding: 16px;
  }
}

/* ── 320px very small screens ── */
@media (max-width: 375px) {
  h2, .h2 {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.7rem;
  }

  .section-label {
    font-size: 0.78rem;
    padding: 5px 12px;
  }
}
