/* ============================================================
   KL Suites — Main Stylesheet
   Design: Desert/Arabic Jazz — Deep Teal + Gold
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&family=Scheherazade+New:wght@400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --teal-dark:   #0e2f3d;
  --teal:        #1a4a5c;
  --teal-light:  #2a6a80;
  --gold:        #d4933a;
  --gold-light:  #f0b55a;
  --gold-pale:   #fad07a;
  --cream:       #f5ead8;
  --white:       #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-arabic:  'Scheherazade New', serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 12px;
  --card-border: 1px solid rgba(212, 147, 58, 0.2);
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.5);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--teal-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* RTL body */
body[dir="rtl"] {
  font-family: var(--font-arabic);
  font-size: 110%;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--cream);
}

.ar-text {
  font-family: var(--font-arabic);
  direction: rtl;
}

/* Clamp-based fluid type */
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; }
p  { font-size: clamp(0.92rem, 1.5vw, 1.05rem); }

/* Gold accent text */
.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.cream { color: var(--cream); }

/* Section spacing */
section { padding: clamp(48px, 8vw, 96px) clamp(16px, 5vw, 64px); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* Section heading block */
.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-title h2 { color: var(--cream); }
.section-title .ar-sub {
  font-family: var(--font-arabic);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold-light);
  display: block;
  margin-top: 4px;
}
.section-subtitle {
  text-align: center;
  color: rgba(245, 234, 216, 0.7);
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}
.divider-gold {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 12px auto 0;
}

/* ============================================================
   ANIMATIONS / KEYFRAMES
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulseSun {
  0%, 100% { transform: scale(1);    opacity: 0.10; }
  50%       { transform: scale(1.05); opacity: 0.16; }
}

@keyframes waGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50%       { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

@keyframes drift {
  0%   { transform: translateY(0px) rotate(-3deg); }
  50%  { transform: translateY(-18px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(-3deg); }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* Reveal animation — triggered by JS */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page load stagger for hero */
.hero-anim { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.hero-anim:nth-child(1) { animation-delay: 0.0s; }
.hero-anim:nth-child(2) { animation-delay: 0.15s; }
.hero-anim:nth-child(3) { animation-delay: 0.30s; }
.hero-anim:nth-child(4) { animation-delay: 0.45s; }
.hero-anim:nth-child(5) { animation-delay: 0.60s; }
.hero-anim:nth-child(6) { animation-delay: 0.75s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(14, 47, 61, 0.82);
  border-bottom: 1px solid rgba(212, 147, 58, 0.12);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(14, 47, 61, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  height: 60px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--cream);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 234, 216, 0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(212, 147, 58, 0.1);
  border: 1px solid rgba(212, 147, 58, 0.3);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-toggle a {
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(245, 234, 216, 0.6);
  transition: all var(--transition);
}
.lang-toggle a.active {
  background: var(--gold);
  color: var(--teal-dark);
  border-radius: 20px;
}
.lang-toggle a:hover:not(.active) { color: var(--gold-light); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(14, 47, 61, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  backdrop-filter: blur(20px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .lang-toggle { margin-top: 16px; }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 32px) clamp(16px, 5vw, 64px) 64px;
  background: var(--teal-dark);
}

/* Desert sun circle */
.hero-sun {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: min(600px, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, var(--gold-light) 30%, transparent 70%);
  animation: pulseSun 4s ease-in-out infinite;
  pointer-events: none;
}

/* Arabic watermark */
.hero-watermark {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  font-family: var(--font-arabic);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(212, 147, 58, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  animation: drift 12s ease-in-out infinite;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; gap: 20px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.hero-h1 { color: var(--cream); }
.hero-h1 em { color: var(--gold); font-style: normal; }

.hero-ar {
  font-family: var(--font-arabic);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold-light);
  direction: rtl;
  text-align: left;
}
body[dir="rtl"] .hero-ar { text-align: right; }

.hero-desc {
  color: rgba(245, 234, 216, 0.75);
  max-width: 480px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* Stats row */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 147, 58, 0.2);
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 234, 216, 0.55);
  margin-top: 3px;
}

/* Hero image frame */
.hero-image-wrap {
  position: relative;
}
.hero-image-frame {
  aspect-ratio: 4/5;
  border-radius: 16px;
  border: var(--card-border);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #2a6a80 0%, #0e2f3d 100%);
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(212,147,58,0.15)'/%3E%3C/svg%3E") repeat;
}
.hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-image-placeholder .ar-watermark {
  font-family: var(--font-arabic);
  font-size: 3rem;
  color: rgba(212, 147, 58, 0.3);
  font-weight: 700;
}
.hero-image-placeholder p {
  color: rgba(245, 234, 216, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Gold corner accents on frame */
.hero-image-frame::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(212, 147, 58, 0.15);
  border-radius: 10px;
  pointer-events: none;
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */

.marquee-bar {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.marquee-item::before {
  content: '✦';
  font-size: 0.6rem;
  opacity: 0.7;
}

/* ============================================================
   SUITES SECTION
   ============================================================ */

.suites-section {
  background: var(--teal-dark);
  position: relative;
}
/* Subtle geometric pattern overlay */
.suites-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, rgba(212,147,58,0.025) 0px, rgba(212,147,58,0.025) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-60deg, rgba(212,147,58,0.025) 0px, rgba(212,147,58,0.025) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}

.suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Suite Card */
.suite-card {
  background: var(--teal);
  border: var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.suite-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 147, 58, 0.55);
}

.suite-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suite-card-image .img-ar-text {
  font-family: var(--font-arabic);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(212, 147, 58, 0.25);
  user-select: none;
}
.suite-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.suite-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.suite-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.suite-name-en {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}
.suite-name-ar {
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  color: var(--gold-light);
  direction: rtl;
  text-align: left;
}
body[dir="rtl"] .suite-name-ar { text-align: right; }

.suite-desc {
  font-size: 0.87rem;
  color: rgba(245, 234, 216, 0.65);
  line-height: 1.6;
}

.suite-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: rgba(212, 147, 58, 0.12);
  border: 1px solid rgba(212, 147, 58, 0.25);
  border-radius: 20px;
  color: var(--gold-pale);
}

.suite-card-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(212, 147, 58, 0.1);
  margin-top: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 46px;
  cursor: pointer;
  text-decoration: none;
}

/* WhatsApp / Green */
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover { background: #20c55a; box-shadow: 0 0 20px rgba(37,211,102,0.35); }
.btn-wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* Gold outline */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212, 147, 58, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Gold solid */
.btn-gold {
  background: var(--gold);
  color: var(--teal-dark);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-gold:hover::after { animation: shimmer 0.6s ease forwards; }

/* Dark teal */
.btn-dark {
  background: var(--teal-dark);
  color: var(--cream);
  border: 1px solid rgba(245, 234, 216, 0.15);
}
.btn-dark:hover { background: var(--teal); border-color: var(--gold); color: var(--gold); }

/* Small */
.btn-sm { padding: 8px 18px; font-size: 0.8rem; min-height: 36px; }
/* Full width */
.btn-full { width: 100%; }

/* ============================================================
   STUDENTS SECTION
   ============================================================ */

.students-section {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.students-section::before {
  content: 'طالب';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  font-family: var(--font-arabic);
  font-size: min(22rem, 40vw);
  font-weight: 700;
  color: rgba(212, 147, 58, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.students-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.student-feature {
  background: rgba(14, 47, 61, 0.5);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
}
.student-feature:hover {
  background: rgba(14, 47, 61, 0.8);
  border-color: rgba(212, 147, 58, 0.4);
  transform: translateY(-4px);
}

.student-icon {
  width: 52px; height: 52px;
  background: rgba(212, 147, 58, 0.12);
  border: 1px solid rgba(212, 147, 58, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.student-feature h4 { font-size: 1rem; margin-bottom: 6px; color: var(--cream); }
.student-feature p { font-size: 0.85rem; color: rgba(245,234,216,0.65); }

.students-cta {
  text-align: center;
  padding-top: 20px;
}
.students-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(245,234,216,0.5);
  letter-spacing: 0.04em;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-section {
  background: var(--teal-dark);
  position: relative;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--teal);
  border: var(--card-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-row:hover {
  border-color: rgba(212, 147, 58, 0.4);
  transform: translateX(4px);
}
body[dir="rtl"] .feature-row:hover { transform: translateX(-4px); }
.feature-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(212, 147, 58, 0.12);
  border: 1px solid rgba(212,147,58,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-text h4 { font-size: 1rem; color: var(--cream); margin-bottom: 3px; }
.feature-text p { font-size: 0.85rem; color: rgba(245,234,216,0.6); }

/* Nearby card */
.nearby-card {
  background: var(--teal);
  border: var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.nearby-card-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(212, 147, 58, 0.15);
}
.nearby-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}
.nearby-list { padding: 8px 0; }
.nearby-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(212,147,58,0.07);
  transition: background var(--transition);
}
.nearby-row:last-child { border-bottom: none; }
.nearby-row:hover { background: rgba(212,147,58,0.05); }
.nearby-name {
  font-size: 0.88rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nearby-name::before { content: '📍'; font-size: 0.75rem; }
.nearby-dist {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  background: rgba(212,147,58,0.1);
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews-section {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '★';
  position: absolute;
  font-size: 28rem;
  color: rgba(212,147,58,0.03);
  top: -50px;
  left: -60px;
  pointer-events: none;
  user-select: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(14,47,61,0.6);
  border: var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,147,58,0.45);
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: rgba(245,234,216,0.8);
  line-height: 1.8;
  direction: rtl;
  margin-bottom: 20px;
}
.review-text.en-review {
  font-family: var(--font-body);
  direction: ltr;
  text-align: left;
}
body[dir="rtl"] .review-text.en-review { text-align: right; }

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
}
.author-country {
  font-size: 0.78rem;
  color: rgba(245,234,216,0.5);
  margin-top: 1px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: clamp(48px, 7vw, 80px) clamp(16px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpolygon points='30,5 55,55 5,55' fill='none' stroke='rgba(14,47,61,0.07)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(14,47,61,0.75);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #081e27;
  padding: clamp(48px, 7vw, 80px) clamp(16px, 5vw, 64px) 24px;
  border-top: 1px solid rgba(212,147,58,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(212,147,58,0.1);
}
.footer-brand .nav-logo { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,234,216,0.55);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,234,216,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(245,234,216,0.65);
  margin-bottom: 10px;
}
.footer-contact-item span { font-size: 1rem; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,234,216,0.35);
}
.footer-bottom .ar-text {
  font-size: 0.85rem;
  color: rgba(212,147,58,0.5);
  direction: rtl;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waGlow 2.5s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.65);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

body[dir="rtl"] .wa-float { right: auto; left: 28px; }

/* ============================================================
   SUITE DETAIL PAGE
   ============================================================ */

.suite-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: calc(var(--nav-h) + 48px) clamp(16px, 5vw, 64px) 64px;
}
.suite-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%);
  opacity: 0.5;
}
.suite-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--teal-dark) 0%, transparent 60%);
}
.suite-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.suite-hero-ar {
  font-family: var(--font-arabic);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--gold-light);
  direction: rtl;
  display: block;
  margin-top: 6px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(245,234,216,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  margin-bottom: 24px;
}
.back-link:hover { color: var(--gold); }
.back-link::before { content: '←'; }
body[dir="rtl"] .back-link::before { content: '→'; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-bottom: 64px;
}
.gallery-main { grid-row: 1 / 3; }
.gallery-slot {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  border: var(--card-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-arabic);
  font-size: 1.8rem;
  color: rgba(212,147,58,0.25);
  overflow: hidden;
  position: relative;
}
.gallery-main .gallery-slot { aspect-ratio: 4/5; height: 100%; }
.gallery-slot img { width: 100%; height: 100%; object-fit: cover; }

/* Suite detail layout */
.suite-detail-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.suite-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.highlight-item {
  background: var(--teal);
  border: var(--card-border);
  border-radius: 8px;
  padding: 16px;
}
.highlight-item .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}
.highlight-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
}

/* Room types */
.room-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.room-badge {
  padding: 6px 16px;
  background: rgba(212,147,58,0.1);
  border: 1px solid rgba(212,147,58,0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gold-pale);
  font-weight: 500;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(245,234,216,0.75);
  padding: 10px 14px;
  background: rgba(26,74,92,0.4);
  border-radius: 6px;
  border: 1px solid rgba(212,147,58,0.08);
}
.amenity-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Booking card sidebar */
.booking-card {
  background: var(--teal);
  border: 1px solid rgba(212,147,58,0.35);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.booking-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212,147,58,0.15);
  color: var(--gold-light);
}
.booking-card .btn { margin-bottom: 12px; }
.booking-note {
  font-size: 0.8rem;
  color: rgba(245,234,216,0.45);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Also like */
.also-like-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ============================================================
   STUDENTS PAGE
   ============================================================ */

.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.66% + 12px); right: calc(16.66% + 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--teal);
  border: var(--card-border);
  border-radius: var(--radius);
  position: relative;
}
.step-number {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 0.87rem; color: rgba(245,234,216,0.65); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--teal);
  border: var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
  background: none;
}
body[dir="rtl"] .faq-q { text-align: right; }
.faq-q:hover { color: var(--gold-light); }
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
  padding: 0 24px;
  font-size: 0.9rem;
  color: rgba(245,234,216,0.65);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  /* Hide the desktop lang toggle only — keep it visible inside mobile menu */
  .nav-inner .lang-toggle { display: none; }
  .nav-hamburger { display: flex; }

  /* Lang toggle inside mobile menu — make it bigger and easy to tap */
  .nav-mobile .lang-toggle {
    display: flex;
    transform: scale(1.15);
    margin-top: 8px;
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }

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

  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-main { grid-row: auto; }
  .gallery-main .gallery-slot { aspect-ratio: 16/9; height: auto; }

  .suite-detail-inner { grid-template-columns: 1fr; }
  .booking-card { position: static; }

  .how-it-works { grid-template-columns: 1fr; }
  .how-it-works::before { display: none; }

  .also-like-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 580px)
   ============================================================ */

@media (max-width: 580px) {
  :root { --nav-h: 60px; }

  .suites-grid { grid-template-columns: 1fr; }
  .students-grid { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }

  .hero-stats { gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; }

  .suite-highlights { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-float { bottom: 16px; right: 16px; }
  body[dir="rtl"] .wa-float { left: 16px; right: auto; }
}
