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

/* ================================================
   DESIGN TOKENS — DARK LUXURY THEME
   ================================================ */
:root {
  --gold:           #C9A84C;
  --gold-light:     #E8C97A;
  --gold-dim:       #9a7a34;
  --teal:           #00B4A0;
  --teal-dark:      #008878;

  --bg-base:        #0A0C0F;
  --bg-section:     #0F1218;
  --bg-card:        #151A22;
  --bg-card-hover:  #1C232E;
  --bg-elevated:    #1E2530;

  --text-heading:   #F5EDD8;
  --text-body:      #B8C2D4;
  --text-muted:     #6B7A94;

  --border-subtle:  rgba(201, 168, 76, 0.12);
  --border-mid:     rgba(201, 168, 76, 0.28);
  --border-strong:  rgba(201, 168, 76, 0.55);

  --shadow-sm:  0 2px 15px rgba(0, 0, 0, 0.4);
  --shadow-md:  0 8px 35px rgba(0, 0, 0, 0.55);
  --shadow-lg:  0 20px 70px rgba(0, 0, 0, 0.7);
  --glow-gold:  0 0 30px rgba(201, 168, 76, 0.22);
  --glow-teal:  0 0 30px rgba(0, 180, 160, 0.22);

  --radius:      1.2rem;
  --radius-sm:   0.6rem;
  --radius-pill: 10rem;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   RESET & BASE
   ================================================ */
* {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none !important;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
  direction: rtl;
}
body {
  background-color: var(--bg-base);
  color: var(--text-body);
  direction: rtl;
  text-align: right;
}
section { padding: 8rem 0; }

/* ================================================
   SCROLLBAR
   ================================================ */
*::-webkit-scrollbar { width: 7px; }
*::-webkit-scrollbar-track { background: var(--bg-section); }
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--teal));
  border-radius: 10px;
}

/* ================================================
   KEYFRAMES
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(45px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}
@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.35); }
  50%       { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 168, 76, 0.12); }
  50%       { border-color: rgba(201, 168, 76, 0.4); }
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ================================================
   GLOBAL COMPONENTS
   ================================================ */
.heading {
  text-align: center;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
}
.heading::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 1.2rem auto 4rem;
  border-radius: 2px;
}

.link-btn {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light), var(--gold));
  background-size: 300% 300%;
  animation: gradientMove 4s ease infinite;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0C0F;
  transition: var(--transition);
  box-shadow: var(--glow-gold);
}
.link-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.5);
  color: #0A0C0F;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  padding: 1.6rem 2rem;
  background: rgba(10, 12, 15, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
  z-index: 1000;
}
.header.active {
  background: rgba(12, 15, 20, 0.98);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
  border-bottom-color: transparent;
}
.header .logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-heading);
  transition: var(--transition);
  white-space: nowrap;
}
.header .logo:hover { color: var(--gold); }
.header .logo span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header .nav { display: flex; align-items: center; }
.header .nav a {
  margin: 0 1.3rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  transition: var(--transition);
}
.header .nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  transition: width var(--transition);
}
.header .nav a:hover,
.header .nav a.active-nav { color: var(--gold); }
.header .nav a:hover::after,
.header .nav a.active-nav::after { width: 100%; }

#menu-btn {
  font-size: 2.4rem;
  color: var(--gold);
  cursor: pointer;
  display: none;
  transition: var(--transition);
}
#menu-btn.fa-times { transform: rotate(90deg); color: var(--teal); }

/* ================================================
   HOME
   ================================================ */
.home {
  background: url(home.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(5, 8, 12, 0.9) 0%,
    rgba(10, 20, 40, 0.75) 55%,
    rgba(5, 8, 12, 0.65) 100%);
}
.home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.home .container { position: relative; z-index: 1; }
.home .content {
  width: 58rem;
  animation: fadeUp 1s ease 0.3s both;
  text-align: right;
}
.home .content h3 {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}
.home .content p {
  line-height: 2;
  font-size: 1.75rem;
  color: rgba(220, 225, 235, 0.88);
  padding: 0.5rem 0 2.5rem;
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  /* إصلاح: كان في padding مكرر (9rem 0 ثم 15px يكتب عليه) — احتفظنا بالقيمة الفعلية */
  padding: 15px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about .row { align-items: center; }
.about .image { position: relative; }
.about .image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s ease;
  border: 1px solid var(--border-subtle);
  width: 100%;
}
.about .image img:hover { transform: scale(1.025); }
.about .image::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 75%; height: 75%;
  border: 2px solid var(--gold-dim);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}
.about .content { text-align: right; padding-right: 3rem; }
.about .content span {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  background: rgba(201, 168, 76, 0.1);
  padding: 0.5rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid);
  margin-bottom: 1.5rem;
}
.about .content h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.about .content p {
  font-size: 1.65rem;
  color: var(--text-body);
  line-height: 2;
  margin-bottom: 2.5rem;
}
.rtl-text { direction: rtl; text-align: right; }

/* ================================================
   SERVICES
   ================================================ */
.services {
  background: var(--bg-base);
  padding: 9rem 0;
  position: relative;
}
.services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2.5rem;
}
.services .box-container .box {
  text-align: center;
  padding: 4rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  animation: borderGlow 5s ease-in-out infinite;
}
.services .box-container .box::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s ease;
}
.services .box-container .box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.services .box-container .box:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
  transform: translateY(-12px);
  box-shadow: var(--shadow-md), var(--glow-gold);
  animation: none;
}
.services .box-container .box:hover::before { transform: scaleX(1); }
.services .box-container .box:hover::after  { opacity: 1; }
.services .box-container .box img {
  height: 6.5rem;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(201, 168, 76, 0.3));
  transition: transform 0.5s ease;
  position: relative; z-index: 1;
}
.services .box-container .box:hover img {
  transform: scale(1.18) rotate(4deg);
  animation: float 2.5s ease-in-out infinite;
}
.services .box-container .box h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.services .box-container .box p {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.9;
  position: relative; z-index: 1;
}
.services .box-container .box:hover p { color: var(--text-body); }

/* ================================================
   OFFERS SECTION
   ================================================ */
.offers-section {
  padding: 8rem 0;
  background: var(--bg-section);
  position: relative;
}
.offers-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  animation: borderGlow 5s ease-in-out infinite;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md), var(--glow-gold);
  animation: none;
}
.offer-card-img {
  height: 200px;
  overflow: hidden;
}
.offer-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-card-img img { transform: scale(1.08); }
.offer-card-body {
  padding: 2.2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offer-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
}
.offer-card-desc {
  font-size: 1.45rem;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.8rem;
}
.offer-card-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0A0C0F;
  border-radius: var(--radius-pill);
  font-size: 1.4rem;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--glow-gold);
}
.offer-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  color: #0A0C0F;
}

/* ================================================
   GALLERY — معرض التبييض
   ================================================ */
.gallery {
  padding: 8rem 0;
  background: linear-gradient(160deg, #07090D 0%, #0D1520 50%, #07090D 100%);
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
}
.gallery-container h2 {
  font-size: 3.6rem !important;
  font-weight: 800;
  color: var(--text-heading) !important;
  margin-bottom: 0.8rem !important;
}
.gallery-container h2::after {
  content: '';
  display: block;
  width: 65px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 1.2rem auto 3.5rem;
  border-radius: 2px;
}
.gallery-slider { overflow: hidden; border-radius: var(--radius); }
.gallery-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-track .card {
  min-width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.gallery-track .card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow-gold);
}
.gallery-track .card img {
  width: 100%; height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-track .card:hover img { transform: scale(1.08); }
.gallery-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.gallery-buttons button {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0A0C0F;
  padding: 1.2rem 3rem;
  font-size: 1.6rem; font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--glow-gold);
}
.gallery-buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

/* ================================================
   CLIENTS GALLERY
   ================================================ */
.clients-gallery {
  padding: 9rem 3rem;
  background: var(--bg-section);
  text-align: center;
  position: relative;
}
.clients-gallery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}
.clients-gallery .section-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
  display: inline-block;
}
.clients-gallery .section-title::after {
  content: '';
  display: block;
  width: 65px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 1.2rem auto 4rem;
  border-radius: 2px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ================================================
   GALLERY CARD — دُمجت التعريفين المكررين في بلوك واحد
   ================================================ */
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  aspect-ratio: 3/4;
  animation: borderGlow 5s ease-in-out infinite;
  position: relative;
  padding: 6px;
}
/* البوردر المتدرج حول الصورة */
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) + 2px);
  padding: 2px;
  background: linear-gradient(135deg, #00ff9d, #00c776, #00a86b, #00ffcc);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: 0.4s ease;
}
.gallery-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--glow-gold);
  border-color: var(--gold);
  animation: none;
}
.gallery-card:hover::before {
  opacity: 1;
  filter: blur(2px);
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  border-radius: var(--radius);
  box-shadow:
    0 15px 40px rgba(0, 255, 157, 0.15),
    0 0 25px rgba(0, 255, 157, 0.25);
}
.gallery-card:hover img {
  transform: scale(1.1);
  box-shadow:
    0 25px 60px rgba(0, 255, 157, 0.25),
    0 0 40px rgba(0, 255, 157, 0.4);
}

/* ================================================
   BOOKING
   ================================================ */
.booking-wrapper {
  background: var(--bg-base);
  padding: 8rem 2rem;
  position: relative;
}
.booking-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}
#booking-section {
  max-width: 520px;
  margin: 0 auto;
  padding: 4.5rem 5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-lg);
  direction: rtl;
  transition: var(--transition);
}
#booking-section:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg), var(--glow-gold);
}
#booking-section h2 {
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 800;
}
#booking-section label {
  display: block;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--text-heading);
  font-weight: 600;
  font-size: 1.5rem;
  text-align: right;
}
#booking-section input,
#booking-section select {
  width: 100%;
  padding: 1.3rem 1.8rem;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 1.45rem;
  font-family: 'Cairo', sans-serif;
  color: var(--text-body);
  text-align: right;
  direction: rtl;
  transition: var(--transition);
}
#booking-section input::placeholder { color: var(--text-muted); }
#booking-section select option { background: var(--bg-elevated); color: var(--text-body); }
#booking-section input:focus,
#booking-section select:focus {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
  color: var(--text-heading);
}
#booking-section button {
  width: 100%;
  padding: 1.5rem;
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite, pulseGlow 2.5s ease infinite;
  color: #0A0C0F;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
#booking-section button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.5);
}

/* نص الـ placeholder لاختيار التاريخ أولاً */
.slots-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.3rem;
  padding: 1.2rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-align: center;
  margin: 0;
}

/* ================================================
   TIME SLOTS — كانت inline في HTML
   ================================================ */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 8px;
  margin-bottom: 4px;
}
.time-slot {
  padding: 10px 6px;
  border-radius: 9px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s;
  user-select: none;
}
.time-slot:hover:not(.slot-pending):not(.slot-booked) {
  border-color: #1e90ff;
  background: rgba(30, 144, 255, 0.13);
  color: #fff;
}
.time-slot.slot-selected {
  border-color: #1e90ff;
  background: rgba(30, 144, 255, 0.22);
  color: #1e90ff;
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.25);
}
.time-slot.slot-pending {
  background: rgba(253, 203, 110, 0.07);
  border-color: rgba(253, 203, 110, 0.3);
  color: #fdcb6e;
  cursor: not-allowed;
}
.time-slot.slot-booked {
  background: rgba(255, 80, 80, 0.06);
  border-color: rgba(255, 80, 80, 0.2);
  color: rgba(255, 100, 100, 0.45);
  cursor: not-allowed;
  text-decoration: line-through !important;
}
.slot-sub {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 3px;
  text-decoration: none !important;
}
.slot-group-label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  margin: 10px 0 5px;
}

/* ================================================
   THANK YOU
   ================================================ */
#thankyou-section {
  max-width: 580px;
  margin: 0 auto;
  padding: 4rem 4.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), var(--glow-teal);
  direction: rtl;
  text-align: right;
  animation: scaleIn 0.5s ease;
}
#thankyou-section h1 {
  text-align: center;
  color: var(--gold);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
#thankyou-section h2 {
  text-align: center;
  color: var(--teal);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
#thankyou-section > p {
  color: var(--text-body);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}
#thankyou-section .booking-data {
  background: var(--bg-elevated);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  margin: 2rem 0;
}
#thankyou-section .booking-data p {
  color: var(--text-body);
  font-size: 1.5rem;
  margin: 0.8rem 0;
  line-height: 1.7;
}
#thankyou-section .booking-data strong { color: var(--gold); }
#thankyou-section a {
  display: inline-block;
  padding: 1.3rem 3rem;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.6rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
#thankyou-section a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ================================================
   MAP
   ================================================ */
.map-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.map-overlay-link {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* ================================================
   TESTIMONIALS — ألوان البطاقات كانت inline في HTML
   ================================================ */
.testimonials-section {
  padding: 50px 20px;
  background: #f4f4f9;
  text-align: center;
  position: relative;
}
.testimonials-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  display: inline-block;
}
.testimonials-section h2::after {
  content: '';
  display: block;
  width: 65px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 1.2rem auto 2rem;
  border-radius: 2px;
}
.testimonials-wrapper {
  overflow: hidden;
  max-width: 1150px;
  margin: 0 auto;
}
.testimonials-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  flex-wrap: nowrap;
}
.testimonial-card {
  min-width: 300px;
  max-width: 320px;
  max-height: 220px;
  padding: 20px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #fff;
  overflow-y: auto;
  word-wrap: break-word;
  white-space: normal;
  position: relative;
}
/* ألوان البطاقات الأصلية */
.card1 { background-color: #8e44ad; }
.card2 { background-color: #3498db; }
.card3 { background-color: #27ae60; }
.card4 { background-color: #16a085; }
.card5 { background-color: #d35400; }
.card6 { background-color: #2c3e50; }

.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.testimonial-header img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-header h3 { margin: 0; font-size: 18px; }
.testimonial-card p { font-size: 16px; color: #f0f0f0; }
.testimonial-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.testimonial-buttons button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.testimonial-buttons button:hover { background: #0056b3; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: linear-gradient(170deg, #060810 0%, #0C1020 45%, #060810 100%);
  color: var(--text-body);
  direction: rtl;
  text-align: right;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--teal) 60%,
    var(--gold) 80%,
    transparent 100%);
  background-size: 300% 100%;
  animation: shimmer 6s linear infinite;
}
.footer::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 3rem 5.5rem;
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 1.6fr;
  gap: 5rem;
  position: relative;
  z-index: 1;
  align-items: start;
}
.footer-brand {}
.footer-brand .logo {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1.8rem;
  line-height: 1.4;
}
.footer-text {
  font-size: 1.45rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.schedule {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(201, 168, 76, 0.06);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.schedule:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--border-mid);
}
.schedule-icon i, .schedule i {
  color: var(--gold);
  font-size: 2rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.schedule .span {
  font-size: 1.4rem;
  color: var(--text-body);
  line-height: 1.8;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 2.2rem;
  padding-bottom: 1.2rem;
  position: relative;
}
.footer-list-title::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0;
  transition: var(--transition);
}
.footer-link ion-icon { color: var(--gold-dim); font-size: 1.5rem; flex-shrink: 0; }
.footer-link:hover { color: var(--gold-light); transform: translateX(-5px); }
.footer-link:hover ion-icon { color: var(--gold); }
.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.item-icon i {
  color: var(--gold);
  font-size: 1.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.item-text, .footer-item address {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: normal;
}
.footer-item .footer-link {
  color: var(--text-muted);
  margin-bottom: 0;
  padding: 0;
  font-size: 1.4rem;
}
.footer-item .footer-link:hover {
  color: var(--gold-light);
  transform: none;
}
.social-list {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.social-link {
  width: 4.2rem; height: 4.2rem;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-mid);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: #0A0C0F;
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--glow-gold);
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 3rem;
  position: relative;
  z-index: 1;
}
.footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  grid-template-columns: none;
}
.footer-bottom p,
.footer-bottom .copyright { font-size: 1.3rem; }
.footer-bottom .copyright a {
  color: var(--text-muted);
  line-height: 1.8;
  transition: var(--transition);
}
.footer-bottom .copyright a:hover { color: var(--gold-light); }
.footer-bottom .social-list { margin-top: 0; }

/* ================================================
   BACK TO TOP
   ================================================ */
.back-top-btn {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0A0C0F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--glow-gold);
  transition: var(--transition);
  z-index: 999;
  animation: pulseGlow 3s ease-in-out infinite;
}
.back-top-btn:hover {
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.6);
  color: #0A0C0F;
}

/* ================================================
   MEDIA QUERIES
   ================================================ */
@media (max-width: 1200px) {
  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 4rem;
    padding: 6rem 3rem 5rem;
  }
  .footer-bottom .container { grid-template-columns: none; }
}

@media (max-width: 991px) {
  html { font-size: 55%; }
  section { padding: 6rem 0; }
  .header .link-btn { padding: 1rem 2rem; font-size: 1.4rem; }
  .home .content { width: auto; }
  .home .content h3 { font-size: 3.5rem; }
  .about .content { padding-right: 1.5rem; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }

  #menu-btn { display: inline-block; }
  .header .link-btn { display: none; }

  .header .nav {
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: rgba(10, 12, 15, 0.98);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
    display: none;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
  }
  .header .nav.active { display: flex; }
  .header .nav a { margin: 0.8rem 0; font-size: 1.8rem; }

  .home { background-position: right center; }
  .home .content { width: 100%; }
  .home .content h3 { font-size: 3rem; }

  .about .image::before { display: none; }
  .about .content { padding-right: 0; }

  .services .box-container { grid-template-columns: 1fr; }

  .testimonials-container { gap: 15px; }
  .testimonial-card { min-width: 80%; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer .container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 5rem 2.5rem 4rem;
    text-align: center;
  }
  .footer-brand .logo { text-align: center; }
  .footer-text { text-align: center; }
  .schedule { justify-content: center; }
  .footer-list-title::after { right: 50%; transform: translateX(50%); }
  .footer-link { justify-content: center; }
  .footer-item { justify-content: center; }
  .item-text, .footer-item address { text-align: center; }
  .social-list { justify-content: center; }

  .footer-bottom { padding: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .clients-gallery { padding: 5rem 1.5rem; }
  .booking-wrapper { padding: 5rem 1.5rem; }
  #booking-section { padding: 3rem 2.5rem; }

  .map-embed-wrapper { padding-bottom: 60%; }
}

@media (max-width: 480px) {
  html { font-size: 50%; }
  .home .content h3 { font-size: 2.6rem; }
  .home .content p { font-size: 1.65rem; }
  .heading { font-size: 3.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 93%; }
  .back-top-btn { bottom: 2rem; left: 2rem; }
  #booking-section { padding: 2.5rem 2rem; }
}

