/* ==========================================================================
   AL JAWHARA CHALET - LUXURY RESORT DESIGN SYSTEM (UI/UX PRO MAX)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Luxury Midnight & Warm Gold */
  --bg-primary: #0b132b;
  --bg-secondary: #1c2541;
  --bg-card: rgba(28, 37, 65, 0.7);
  --bg-card-hover: rgba(42, 54, 90, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.65);
  
  --color-gold-primary: #d4af37;
  --color-gold-hover: #f59e0b;
  --color-gold-light: #fef3c7;
  --color-gold-glow: rgba(212, 175, 55, 0.35);
  
  --color-teal-accent: #00b4d8;
  --color-teal-glow: rgba(0, 180, 216, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --text-gold: #fbbf24;
  
  --border-color: rgba(212, 175, 55, 0.2);
  --border-color-hover: rgba(212, 175, 55, 0.5);
  --border-glass: rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-heading: 'Playfair Display', 'Cairo', serif;
  --font-body: 'Cairo', 'Montserrat', sans-serif;
  
  /* Spacing Tokens */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadow Depths */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  --shadow-teal: 0 8px 25px rgba(0, 180, 216, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. BASE RESET & GLOBAL STYLES
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal-accent), var(--color-gold-primary));
  z-index: 2000;
  transform-origin: 0%;
  transform: scaleX(0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--color-gold-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-gold-hover);
}

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

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--color-gold-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
  margin: 12px auto 0;
  border-radius: var(--radius-full);
}

.section-header p {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  outline: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-primary), #b8860b);
  color: #0f172a;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-hover), var(--color-gold-primary));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  background: var(--color-gold-primary);
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-teal {
  background: linear-gradient(135deg, var(--color-teal-accent), #0077b6);
  color: #ffffff;
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  background: linear-gradient(135deg, #00c4ef, var(--color-teal-accent));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.4);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR & MOBILE DRAWER
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(11, 19, 43, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 4px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: transform var(--transition-fast);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.06);
}

.nav-brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
}

.nav-brand-sub {
  font-size: 0.75rem;
  color: var(--color-gold-primary);
  font-family: var(--font-body);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.nav-link {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.nav-cta-btn {
  margin-right: 12px;
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--color-gold-primary);
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 1600;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  transition: color var(--transition-fast);
}

.drawer-close-btn:hover {
  color: var(--color-gold-primary);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: var(--text-main);
  font-weight: 600;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.drawer-link:hover, .drawer-link.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--border-color);
  color: var(--color-gold-primary);
}

.drawer-link i {
  color: var(--color-gold-primary);
  width: 20px;
  text-align: center;
}

.drawer-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
  text-align: center;
}

.drawer-footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 19, 43, 0.75) 0%,
    rgba(11, 19, 43, 0.85) 60%,
    var(--bg-primary) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--color-gold-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
}

.hero-title {
  color: var(--text-main);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  color: var(--color-gold-primary);
  background: linear-gradient(135deg, var(--color-gold-primary), #fef3c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Highlights Bar */
.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  background: rgba(28, 37, 65, 0.65);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: right;
}

.hero-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-color);
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-feature-text h4 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.hero-feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   6. ABOUT / OVERVIEW SECTION
   -------------------------------------------------------------------------- */
.about-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold-primary), var(--color-teal-accent));
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--color-gold-primary);
  margin-bottom: 16px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 24px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: transform var(--transition-fast);
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-color);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-gold-primary);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   7. FEATURES & FACILITIES GRID
   -------------------------------------------------------------------------- */
.features-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color var(--transition-fast);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
  border-color: var(--border-color);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 180, 216, 0.1));
  border: 1px solid var(--border-color);
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--color-gold-primary), #b8860b);
  color: #0f172a;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-gold);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.feature-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 180, 216, 0.15);
  color: var(--color-teal-accent);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   8. PRICING & PACKAGES SECTION
   -------------------------------------------------------------------------- */
.packages-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
  backdrop-filter: blur(16px);
}

.package-card.featured {
  border-color: var(--color-gold-primary);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
  background: linear-gradient(180deg, rgba(28, 37, 65, 0.9), rgba(11, 19, 43, 0.95));
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold-primary), #b8860b);
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
}

.package-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 24px;
}

.package-header h3 {
  font-size: 1.6rem;
  color: var(--color-gold-primary);
  margin-bottom: 8px;
}

.package-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--color-teal-accent);
  background: rgba(0, 180, 216, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.package-price-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 19, 43, 0.5);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.package-price-item span {
  font-size: 0.98rem;
  color: var(--text-light);
}

.package-price-item strong {
  font-size: 1.35rem;
  color: var(--color-gold-primary);
  font-family: var(--font-heading);
}

.package-features-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.package-features-list li i {
  color: var(--color-gold-primary);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   9. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color);
  box-shadow: var(--shadow-lg);
}

.testimonial-img-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.testimonial-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.03);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: var(--text-gold);
  margin-bottom: 10px;
  font-size: 1rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.98rem;
}

.testimonial-badge {
  font-size: 0.75rem;
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   10. GALLERY PAGE & FILTER TABS
   -------------------------------------------------------------------------- */
.page-header {
  position: relative;
  padding: 140px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-glass);
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--color-gold-primary);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-section {
  padding: var(--space-3xl) 0;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(28, 37, 65, 0.6);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-gold-primary);
  color: #0f172a;
  border-color: var(--color-gold-primary);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  height: 280px;
  transition: all var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 19, 43, 0.9) 0%,
    rgba(11, 19, 43, 0.3) 50%,
    transparent 100%
  );
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  color: var(--color-gold-primary);
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.gallery-zoom-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.85);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   11. LIGHTBOX MODAL WITH SLIDER
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(5, 10, 24, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 24px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-color);
}

.lightbox-caption {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 16px;
  text-align: center;
}

.lightbox-counter {
  color: var(--color-gold-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 6px;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  left: 0;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold-primary);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(28, 37, 65, 0.8);
  border: 1px solid var(--border-color);
  color: var(--color-gold-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: var(--color-gold-primary);
  color: #0f172a;
}

.lightbox-prev { right: -24px; }
.lightbox-next { left: -24px; }

/* --------------------------------------------------------------------------
   12. CONTACT PAGE & INTERACTIVE BOOKING CALCULATOR
   -------------------------------------------------------------------------- */
.contact-section {
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Booking Calculator Card */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.calculator-card h3 {
  font-size: 1.6rem;
  color: var(--color-gold-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calculator-card p {
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(11, 19, 43, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px; /* 16px prevents forced zoom on iOS Safari */
  min-height: 48px;
  color-scheme: dark;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Date input icon dark mode styling */
input[type="date"].form-control::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(1) saturate(4) hue-rotate(5deg);
  cursor: pointer;
  padding: 4px;
}

/* Custom select dropdown styling for smooth appearance in RTL */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 42px;
}

select.form-control option {
  background-color: var(--bg-secondary);
  color: var(--text-main);
  padding: 10px;
}

.calculator-summary {
  background: rgba(11, 19, 43, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-price-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.calc-price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold-primary);
  font-family: var(--font-heading);
}

/* Contact Cards Info */
.contact-cards-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--border-color);
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-color);
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* Map Card */
.map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.map-card h4 {
  font-size: 1.2rem;
  color: var(--color-gold-primary);
  margin-bottom: 12px;
}

/* FAQ Accordion */
.faq-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-color);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.05rem;
}

.faq-header i {
  color: var(--color-gold-primary);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* Terms Section */
.terms-section {
  padding: var(--space-3xl) 0;
}

.terms-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(11, 19, 43, 0.5);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  font-size: 0.98rem;
  color: var(--text-light);
}

.terms-list li i {
  color: var(--color-gold-primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   13. FLOATING ACTION WIDGETS
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1800;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  text-decoration: none;
}

.float-whatsapp {
  background: #25d366;
  animation: whatsappPulse 3s infinite ease-in-out;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}

.float-phone {
  background: var(--color-gold-primary);
  color: #0f172a;
}

.float-btn:hover {
  transform: scale(1.12);
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: #050a18;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-gold-primary);
  color: #0f172a;
  border-color: var(--color-gold-primary);
}

.footer-title {
  font-size: 1.1rem;
  color: var(--color-gold-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold-primary);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
  text-align: center;
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS (MOBILE PRO MAX)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  
  .page-header {
    padding: 105px 20px 36px;
  }

  .page-header h1 {
    font-size: clamp(1.5rem, 5.5vw, 2.3rem);
    line-height: 1.35;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-features-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-feature-item {
    justify-content: center;
  }
  
  .lightbox-prev { right: 10px; }
  .lightbox-next { left: 10px; }
  
  .mobile-drawer {
    width: min(300px, 85vw);
    right: -100%;
  }
  
  .mobile-drawer.active {
    right: 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    white-space: normal;
    word-break: break-word;
  }

  .btn-large {
    padding: 14px 18px;
    font-size: 1rem;
  }

  .calculator-card {
    padding: 24px 16px;
  }

  .calculator-card h3 {
    font-size: 1.35rem;
    flex-wrap: wrap;
    gap: 8px;
  }

  .calculator-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .calculator-summary {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 14px;
    gap: 12px;
    margin: 20px 0;
  }

  .calc-price-title {
    font-size: 0.85rem;
  }

  .calc-price-amount {
    font-size: 1.65rem;
  }

  .contact-cards-column {
    gap: 16px;
  }

  .contact-info-card {
    padding: 16px 14px;
    gap: 14px;
  }

  .contact-info-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .contact-info-text h4 {
    font-size: 0.98rem;
    margin-bottom: 2px;
  }

  .contact-info-text p, .contact-info-text a {
    font-size: 0.88rem;
    word-break: break-word;
  }

  .map-card {
    padding: 20px 16px;
  }

  .map-card h4 {
    font-size: 1.1rem;
  }

  .faq-section, .terms-section, .contact-section {
    padding: 40px 0;
  }

  .faq-accordion {
    gap: 12px;
  }

  .faq-header {
    padding: 16px 14px;
    font-size: 0.95rem;
    gap: 10px;
  }

  .faq-header span {
    flex: 1;
    text-align: right;
    line-height: 1.5;
  }

  .faq-body {
    padding: 0 14px 16px;
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .terms-card {
    padding: 24px 16px;
  }

  .terms-list {
    gap: 10px;
  }

  .terms-list li {
    padding: 12px 14px;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

@media (max-width: 375px) {
  .container {
    padding: 0 12px;
  }

  .calculator-card, .about-card, .terms-card, .map-card {
    padding: 18px 12px;
  }

  .form-control {
    padding: 12px 10px;
    font-size: 15px;
  }

  .calc-price-amount {
    font-size: 1.45rem;
  }

  .stat-box {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   16. PAGE BOTTOM NAVIGATION BANNER
   -------------------------------------------------------------------------- */
.page-nav-banner {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--bg-primary);
  position: relative;
}

.page-nav-card {
  background: linear-gradient(135deg, rgba(28, 37, 65, 0.85), rgba(11, 19, 43, 0.95));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.page-nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal-accent), var(--color-gold-primary), var(--color-teal-accent));
}

.page-nav-header h3 {
  font-size: 1.75rem;
  color: var(--color-gold-primary);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-nav-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 28px;
}

.page-nav-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .page-nav-card {
    padding: 28px 16px;
  }

  .page-nav-header h3 {
    font-size: 1.35rem;
  }

  .page-nav-header p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .page-nav-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .page-nav-buttons .btn {
    width: 100%;
  }
}