/* ============================================================
   Le Petite Sofa - Main Stylesheet
   Color Palette: Blush Pink, Rose Gold, Soft Purple, Cream
   ============================================================ */

:root {
  --pink-primary: #e91e8c;
  --pink-light: #f8a5c7;
  --pink-pale: #fde8f3;
  --pink-deep: #c2185b;
  --rose-gold: #b5877a;
  --rose-gold-light: #e8c5bc;
  --gold: #d4a843;
  --gold-light: #f5e6c0;
  --purple-soft: #9c6db0;
  --purple-pale: #f0e6f7;
  --cream: #fdf6f0;
  --cream-dark: #f5ede3;
  --white: #ffffff;
  --dark: #2d1b2e;
  --text-primary: #3d2040;
  --text-secondary: #7a5c80;
  --text-light: #b09ab5;
  --border-color: #f0d6e8;
  --shadow-sm: 0 2px 10px rgba(233,30,140,0.08);
  --shadow-md: 0 8px 30px rgba(233,30,140,0.15);
  --shadow-lg: 0 20px 60px rgba(233,30,140,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* ===== Handwritten Fonts ===== */
  --font-en-hand: 'Dancing Script', 'Caveat', cursive;          /* خط يدوي إنجليزي أنيق للعناوين */
  --font-en-hand2: 'Caveat', 'Dancing Script', cursive;         /* خط يدوي ثاني للنصوص */
  --font-en-display: 'Pacifico', cursive;                       /* خط عريض ممتع للشعارات */
  --font-en-body: 'Poppins', sans-serif;                        /* خط النص العادي */
  --font-ar-hand: 'Playpen Sans Arabic', cursive;               /* خط يدوي عربي للعناوين */
  --font-ar-hand2: 'Aref Ruqaa Ink', cursive;                   /* خط رقعة يدوي للعناوين الكبيرة */
  --font-ar-body: 'Playpen Sans Arabic', cursive;               /* خط النص العربي */
}

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

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

body {
  font-family: var(--font-en-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Keep the Latin body copy comfortably readable across catalog cards. */
html[lang="en"] p {
  font-family: var(--font-en-body);
  font-size: max(1rem, 16px);
  line-height: 1.8;
}

body.rtl {
  font-family: var(--font-ar-body);
  direction: rtl;
  text-align: right;
  line-height: 1.9;
  letter-spacing: 0;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-en-hand);
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* H1 uses the bolder display handwriting */
h1 {
  font-family: var(--font-en-hand);
  font-weight: 700;
  letter-spacing: -0.5px;
}

body.rtl h1 {
  font-family: var(--font-ar-hand2);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
body.rtl h2, body.rtl h3 {
  font-family: var(--font-ar-hand);
  font-weight: 700;
  line-height: 1.6;
}
body.rtl h4, body.rtl h5, body.rtl h6 {
  font-family: var(--font-ar-hand);
  font-weight: 600;
  line-height: 1.7;
}

/* ===== Handwriting utility classes ===== */
.hand {
  font-family: var(--font-en-hand) !important;
}
.hand-ar {
  font-family: var(--font-ar-hand) !important;
}
.font-pacifico {
  font-family: var(--font-en-display) !important;
}
.font-caveat {
  font-family: var(--font-en-hand2) !important;
  font-size: 1.1em;
}

/* Arabic handwriting text sizing boost */
body.rtl p,
body.rtl li,
body.rtl span,
body.rtl label {
  font-family: var(--font-ar-body);
  font-size: 1.02em;
  line-height: 1.9;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-en-hand);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
}
body.rtl .btn {
  font-family: var(--font-ar-hand);
  font-size: 1.05rem;
  letter-spacing: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,30,140,0.5);
}
.btn-outline {
  border: 2px solid var(--pink-primary);
  color: var(--pink-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--pink-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e8b85a);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,168,67,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.6);
}
.btn-white {
  background: var(--white);
  color: var(--pink-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--pink-pale);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ==================== SECTION HEADER ==================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.left { text-align: left; }
body.rtl .section-header.left { text-align: right; }
.section-tag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-primary);
  font-family: var(--font-en-hand2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
body.rtl .section-tag {
  font-family: var(--font-ar-hand);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ==================== NAVBAR ==================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-soft));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-logo .logo-text { display: flex; flex-direction: column; }
.nav-logo .logo-text .brand { font-family: var(--font-en-hand); font-size: 1.3rem; font-weight: 700; color: var(--text-primary); line-height: 1; letter-spacing: -0.3px; }
body.rtl .nav-logo .logo-text .brand { font-family: var(--font-ar-hand2); font-size: 1.2rem; }
.nav-logo .logo-text .sub { font-size: 0.7rem; color: var(--text-secondary); letter-spacing: 1px; }
.brand-image-link{flex:0 0 auto}.brand-logo-image{display:block;width:76px;height:58px;object-fit:contain;border-radius:10px;background:#fff}.footer-real-logo img{display:block;width:118px;height:92px;object-fit:contain;border-radius:14px;background:#fff}@media(max-width:600px){.brand-logo-image{width:62px;height:48px}}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  border-radius: 50px;
  font-family: var(--font-en-hand2);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
  white-space: nowrap;
}
body.rtl .nav-link {
  font-family: var(--font-ar-hand);
  font-size: 0.98rem;
}
.nav-link:hover, .nav-link.active {
  background: var(--pink-pale);
  color: var(--pink-primary);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border-color);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.lang-btn:hover { border-color: var(--pink-primary); color: var(--pink-primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 75px; left: 0; right: 0;
  background: white;
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  z-index: 999;
  border-top: 1px solid var(--border-color);
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 4px; font-size: 1rem; }
.mobile-menu .nav-link:hover { background: var(--pink-pale); }

/* ==================== HERO SLIDER ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fde8f3 0%, #f0e6f7 50%, #fdf6f0 100%);
  z-index: 0;
}
.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}
.hero-decor.d1 { width: 600px; height: 600px; background: var(--pink-primary); top: -200px; right: -200px; animation-delay: 0s; }
.hero-decor.d2 { width: 400px; height: 400px; background: var(--purple-soft); bottom: -100px; left: -100px; animation-delay: 2s; }
.hero-decor.d3 { width: 200px; height: 200px; background: var(--gold); top: 40%; left: 40%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--pink-primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-en-hand2);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
body.rtl .hero-text .tag {
  font-family: var(--font-ar-hand);
  font-size: 0.92rem;
}
.hero-text h1 {
  font-family: var(--font-en-hand);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.18;
  margin-bottom: 20px;
  text-shadow: 1px 2px 8px rgba(233,30,140,0.08);
}
body.rtl .hero-text h1 {
  font-family: var(--font-ar-hand2);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.5;
}
.hero-text p {
  font-family: var(--font-en-hand2);
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}
body.rtl .hero-text p {
  font-family: var(--font-ar-body);
  font-size: 1.08rem;
  line-height: 1.95;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--pink-primary);
  font-family: var(--font-en-hand);
  line-height: 1;
}
body.rtl .hero-stat .number {
  font-family: var(--font-ar-hand2);
}
.hero-stat .label {
  font-family: var(--font-en-hand2);
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}
body.rtl .hero-stat .label {
  font-family: var(--font-ar-hand);
  font-size: 0.85rem;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-main {
  width: 340px; height: 440px;
  background: linear-gradient(135deg, var(--pink-pale), var(--purple-pale));
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card-float.f1 { top: 40px; left: -40px; }
.hero-card-float.f2 { bottom: 60px; right: -40px; }
.hero-card-float .float-icon {
  width: 42px; height: 42px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-card-float .float-text .num { font-weight: 800; font-size: 1.1rem; color: var(--text-primary); }
.hero-card-float .float-text .txt { font-size: 0.72rem; color: var(--text-secondary); }

/* ==================== ABOUT SECTION ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-soft));
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-num { font-size: 2rem; font-weight: 900; font-family: var(--font-en); line-height: 1; }
.about-badge .badge-txt { font-size: 0.75rem; opacity: 0.9; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.value-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card .v-icon {
  width: 44px; height: 44px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.value-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.value-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ==================== FACILITIES GRID ==================== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.facility-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.facility-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--purple-soft));
  transform: scaleX(0);
  transition: var(--transition);
}
.facility-card:hover::before { transform: scaleX(1); }
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.facility-icon {
  width: 70px; height: 70px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--pink-primary);
  font-size: 1.6rem;
  transition: var(--transition);
}
.facility-card:hover .facility-icon {
  background: var(--pink-primary);
  color: white;
  transform: scale(1.1);
}
.facility-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.facility-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ==================== SERVICES GRID ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: default;
}
.service-chip:hover {
  background: var(--pink-pale);
  border-color: var(--pink-light);
  transform: translateX(4px);
}
body.rtl .service-chip:hover { transform: translateX(-4px); }
.service-chip .s-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-primary);
  flex-shrink: 0;
}
.service-chip span { font-size: 0.88rem; font-weight: 500; }

/* ==================== PACKAGES ==================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card.featured {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 2px var(--pink-light);
}
.package-header {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, var(--pink-pale), var(--purple-pale));
  text-align: center;
  position: relative;
}
.pkg-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--pink-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
body.rtl .pkg-badge { right: auto; left: 16px; }
.pkg-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-soft));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.package-header h3 { font-size: 1.25rem; margin-bottom: 8px; }
.package-header .price {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.package-body { padding: 28px; }
.pkg-section { margin-bottom: 20px; }
.pkg-section h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 10px;
}
.pkg-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-color);
}
.pkg-section ul li:last-child { border-bottom: none; }
.pkg-section ul li i { color: var(--pink-primary); margin-top: 3px; font-size: 0.75rem; flex-shrink: 0; }
.package-footer { padding: 0 28px 28px; }

/* ==================== PARTIES ==================== */
.parties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.party-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  gap: 0;
}
.party-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.party-color-bar {
  width: 6px;
  flex-shrink: 0;
}
.party-card:nth-child(1) .party-color-bar { background: linear-gradient(to bottom, #e91e8c, #9c6db0); }
.party-card:nth-child(2) .party-color-bar { background: linear-gradient(to bottom, #9c6db0, #b5877a); }
.party-card:nth-child(3) .party-color-bar { background: linear-gradient(to bottom, var(--gold), #e8b85a); }
.party-card:nth-child(4) .party-color-bar { background: linear-gradient(to bottom, #e91e8c, var(--gold)); }
.party-content { padding: 28px 28px 28px 22px; flex: 1; }
body.rtl .party-content { padding: 28px 22px 28px 28px; }
.party-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.party-meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 50px;
}
.party-meta i { color: var(--pink-primary); }
.party-content h3 { font-size: 1.2rem; margin-bottom: 12px; }
.party-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.party-includes { margin-bottom: 20px; }
.party-includes h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 8px;
}
.includes-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.includes-grid span {
  background: var(--pink-pale);
  color: var(--pink-deep);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
}

/* ==================== CLASSES ==================== */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.class-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.class-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.class-card:nth-child(1) .class-icon-wrap { background: var(--pink-pale); color: var(--pink-primary); }
.class-card:nth-child(2) .class-icon-wrap { background: var(--purple-pale); color: var(--purple-soft); }
.class-card:nth-child(3) .class-icon-wrap { background: var(--gold-light); color: var(--gold); }
.class-card:nth-child(4) .class-icon-wrap { background: #e8f5e9; color: #4caf50; }
.class-card:nth-child(5) .class-icon-wrap { background: #e3f2fd; color: #2196f3; }
.class-card:hover .class-icon-wrap {
  background: var(--pink-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}
.class-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.class-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(5n+1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(233,30,140,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 1.5rem; }

/* ==================== FAQ ==================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--pink-primary); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: white;
  transition: var(--transition);
}
body.rtl .faq-question { text-align: right; }
.faq-question:hover { background: var(--pink-pale); }
.faq-item.open .faq-question { background: var(--pink-pale); color: var(--pink-primary); }
.faq-question .icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--pink-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 0.9rem;
}
.faq-item.open .faq-question .icon { background: var(--pink-primary); color: white; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }

/* ==================== BOOKING FORM ==================== */
.booking-section {
  background: linear-gradient(135deg, var(--pink-pale), var(--purple-pale));
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.booking-info h2 { font-size: 2rem; margin-bottom: 16px; }
.booking-info p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-item .c-icon {
  width: 44px; height: 44px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item .c-label { font-size: 0.75rem; color: var(--text-secondary); }
.contact-item .c-val { font-size: 0.92rem; font-weight: 600; }
.booking-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(233,30,140,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ==================== MEMBERSHIP ==================== */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.membership-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.membership-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--pink-primary), var(--purple-soft));
}
.membership-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mem-icon {
  width: 70px; height: 70px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--pink-primary);
  font-size: 1.8rem;
}
.membership-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.membership-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ==================== FOOTER ==================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo-icon { background: linear-gradient(135deg, var(--pink-primary), var(--purple-soft)); }
.footer-brand .logo-text .brand { color: white; }
.footer-brand .logo-text .sub { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin: 20px 0 24px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--pink-primary); color: white; transform: translateY(-3px); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--pink-light); padding-left: 4px; }
body.rtl .footer-links a:hover { padding-left: 0; padding-right: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--pink-primary); margin-top: 2px; font-size: 0.85rem; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--pink-light); }

/* ==================== ALERTS ==================== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #fce4ec; color: #c62828; border: 1px solid #f48fb1; }
.alert-info { background: var(--pink-pale); color: var(--pink-deep); border: 1px solid var(--pink-light); }

/* ==================== BADGES ==================== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-pink { background: var(--pink-pale); color: var(--pink-primary); }
.badge-purple { background: var(--purple-pale); color: var(--purple-soft); }
.badge-gold { background: var(--gold-light); color: var(--gold); }

/* ==================== BACK TO TOP ==================== */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-soft));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  font-size: 1rem;
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-4px); }

/* ==================== WHATSAPP FLOAT ==================== */
#whatsappFloat {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 56px; height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 500;
  transition: var(--transition);
  text-decoration: none;
}
#whatsappFloat:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.7); }

/* ==================== PAGE HERO ==================== */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--purple-pale) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero.ph-slider {
  background: transparent;
}
.page-hero.ph-slider .ph-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity;
}
.page-hero.ph-slider .ph-slide.active {
  opacity: 1;
}
.page-hero.ph-slider .ph-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30);
}
.page-hero.ph-slider .container {
  position: relative;
  z-index: 3;
}
.page-hero.ph-slider h1,
.page-hero.ph-slider p,
.page-hero.ph-slider .breadcrumb,
.page-hero.ph-slider .breadcrumb a {
  color: rgba(255,255,255,0.95);
}
.page-hero.ph-slider p { color: rgba(255,255,255,0.78); }
.page-hero.ph-slider .breadcrumb span { color: rgba(255,255,255,0.65); }
.page-hero.ph-slider .ph-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.page-hero.ph-slider .ph-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.page-hero.ph-slider .ph-dot.active {
  width: 26px;
  border-radius: 50px;
  background: white;
  border-color: white;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--pink-primary);
  border-radius: 50%;
  opacity: 0.05;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: var(--text-secondary); max-width: 550px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.breadcrumb a { color: var(--pink-primary); }
.breadcrumb span { color: var(--text-light); }

/* ==================== CARD HOVER EFFECTS ==================== */
.card-hover { transition: var(--transition); }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* ==================== LOADING / SPINNER ==================== */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--pink-pale);
  border-top-color: var(--pink-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==================== HANDWRITTEN FONT — COMPREHENSIVE OVERRIDES ==================== */

/* --- Facility cards --- */
.facility-card h3 { font-family: var(--font-en-hand); font-size: 1.1rem; }
body.rtl .facility-card h3 { font-family: var(--font-ar-hand); font-size: 1.15rem; }
.facility-card p { font-family: var(--font-en-hand2); font-size: 0.92rem; line-height: 1.75; }
body.rtl .facility-card p { font-family: var(--font-ar-body); }

/* --- Package cards --- */
.package-header h3 { font-family: var(--font-en-hand); font-size: 1.3rem; }
body.rtl .package-header h3 { font-family: var(--font-ar-hand2); font-size: 1.2rem; line-height: 1.5; }
.pkg-section h5 { font-family: var(--font-en-hand2); letter-spacing: 0.5px; }
body.rtl .pkg-section h5 { font-family: var(--font-ar-hand); letter-spacing: 0; }
.pkg-section ul li span { font-family: var(--font-en-hand2); font-size: 0.87rem; }
body.rtl .pkg-section ul li span { font-family: var(--font-ar-body); }
.pkg-badge { font-family: var(--font-en-hand2); }
body.rtl .pkg-badge { font-family: var(--font-ar-hand); }

/* --- Party cards --- */
.party-content h3 { font-family: var(--font-en-hand); font-size: 1.25rem; }
body.rtl .party-content h3 { font-family: var(--font-ar-hand2); line-height: 1.5; }
.party-content p { font-family: var(--font-en-hand2); line-height: 1.75; }
body.rtl .party-content p { font-family: var(--font-ar-body); }
.party-meta span { font-family: var(--font-en-hand2); font-size: 0.8rem; }
body.rtl .party-meta span { font-family: var(--font-ar-hand); }

/* --- Class cards --- */
.class-card h3 { font-family: var(--font-en-hand); font-size: 1.15rem; }
body.rtl .class-card h3 { font-family: var(--font-ar-hand2); line-height: 1.55; }
.class-card p { font-family: var(--font-en-hand2); line-height: 1.75; }
body.rtl .class-card p { font-family: var(--font-ar-body); }

/* --- Value cards (About) --- */
.value-card h4 { font-family: var(--font-en-hand); font-size: 1rem; }
body.rtl .value-card h4 { font-family: var(--font-ar-hand); font-size: 1.05rem; }
.value-card p { font-family: var(--font-en-hand2); font-size: 0.84rem; }
body.rtl .value-card p { font-family: var(--font-ar-body); }

/* --- About section --- */
.about-badge .badge-num { font-family: var(--font-en-hand); }
body.rtl .about-badge .badge-num { font-family: var(--font-ar-hand2); }
.about-badge .badge-txt { font-family: var(--font-en-hand2); }
body.rtl .about-badge .badge-txt { font-family: var(--font-ar-hand); }

/* --- FAQ --- */
.faq-question { font-family: var(--font-en-hand2); font-size: 1rem; }
body.rtl .faq-question { font-family: var(--font-ar-hand); font-size: 1.02rem; }
.faq-answer p { font-family: var(--font-en-hand2); font-size: 0.93rem; line-height: 1.8; }
body.rtl .faq-answer p { font-family: var(--font-ar-body); font-size: 0.96rem; line-height: 1.95; }

/* --- Membership cards --- */
.membership-card h3 { font-family: var(--font-en-hand); font-size: 1.25rem; }
body.rtl .membership-card h3 { font-family: var(--font-ar-hand2); }
.membership-card p { font-family: var(--font-en-hand2); line-height: 1.75; }
body.rtl .membership-card p { font-family: var(--font-ar-body); }

/* --- Contact items --- */
.contact-item .c-val { font-family: var(--font-en-hand); font-size: 0.95rem; }
body.rtl .contact-item .c-val { font-family: var(--font-ar-hand); }
.contact-item .c-label { font-family: var(--font-en-hand2); }
body.rtl .contact-item .c-label { font-family: var(--font-ar-hand); }

/* --- Booking / Form labels --- */
.form-group label { font-family: var(--font-en-hand2); font-size: 0.85rem; }
body.rtl .form-group label { font-family: var(--font-ar-hand); font-size: 0.9rem; }
.booking-form-card h3 { font-family: var(--font-en-hand); font-size: 1.4rem; }
body.rtl .booking-form-card h3 { font-family: var(--font-ar-hand2); line-height: 1.5; }
.booking-info h2 { font-family: var(--font-en-hand); }
body.rtl .booking-info h2 { font-family: var(--font-ar-hand2); line-height: 1.5; }

/* --- Page hero --- */
.page-hero h1 { font-family: var(--font-en-hand); }
body.rtl .page-hero h1 { font-family: var(--font-ar-hand2); line-height: 1.5; }
.page-hero p { font-family: var(--font-en-hand2); font-size: 1.08rem; }
body.rtl .page-hero p { font-family: var(--font-ar-body); }
.breadcrumb { font-family: var(--font-en-hand2); }
body.rtl .breadcrumb { font-family: var(--font-ar-hand); }

/* --- Footer --- */
footer .nav-logo .logo-text .brand { font-family: var(--font-en-hand) !important; }
body.rtl footer .nav-logo .logo-text .brand { font-family: var(--font-ar-hand2) !important; }
footer p { font-family: var(--font-en-hand2); }
body.rtl footer p { font-family: var(--font-ar-body); }
.footer-links a { font-family: var(--font-en-hand2); }
body.rtl .footer-links a { font-family: var(--font-ar-hand); }
.footer-col h4 { font-family: var(--font-en-hand); font-size: 1rem; }
body.rtl .footer-col h4 { font-family: var(--font-ar-hand2); font-size: 1rem; }
.footer-contact-item span { font-family: var(--font-en-hand2); }
body.rtl .footer-contact-item span { font-family: var(--font-ar-body); }

/* --- Alert messages --- */
.alert { font-family: var(--font-en-hand2); }
body.rtl .alert { font-family: var(--font-ar-hand); }

/* --- Service chips --- */
.service-chip span { font-family: var(--font-en-hand2); }
body.rtl .service-chip span { font-family: var(--font-ar-hand); }

/* --- Floating hero card --- */
.hero-card-float .float-text .num { font-family: var(--font-en-hand); font-size: 1.15rem; }
body.rtl .hero-card-float .float-text .num { font-family: var(--font-ar-hand2); }
.hero-card-float .float-text .txt { font-family: var(--font-en-hand2); }
body.rtl .hero-card-float .float-text .txt { font-family: var(--font-ar-hand); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  body.rtl .hero-content { text-align: center; }
  .hero-text p { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { order: -1; }
  .booking-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .parties-grid { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .section-padding { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(5n+1) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .booking-form-card { padding: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
