/* ==========================================================================
   HORUS — Stay in Cairo
   100% Fully Responsive Luxury Hospitality Design System
   Refined Arabic Typography (Almarai), Custom Scrollbar & Luxury Cursor,
   4s Autoplay Infinite Sliders, Enhanced Booking Form & Centered Luxury Footer
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Root Design Tokens --- */
:root {
  /* Brand Luxury Colors */
  --gold-primary: #B86B35;
  --gold-light: #E8A374;
  --gold-dark: #8C471A;
  --gold-gradient: linear-gradient(135deg, #F0B68E 0%, #B86B35 50%, #7A3A12 100%);
  --gold-glow: rgba(184, 107, 53, 0.25);
  --gold-subtle: rgba(184, 107, 53, 0.12);

  /* Background Surfaces */
  --bg-page: #FAF8F5;
  --bg-section-alt: #F4EFE9;
  --bg-dark: #111215;
  --bg-dark-surface: #191B20;
  --bg-dark-elevated: #22252C;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCFBF9;

  /* Typography Colors */
  --text-main: #1C1D21;
  --text-secondary: #585A63;
  --text-muted: #8E919B;
  --text-gold: #B86B35;
  --text-on-dark: #FAF8F5;
  --text-muted-on-dark: #A6A9B4;

  /* Borders & Dividers */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(184, 107, 53, 0.3);
  --border-gold-strong: rgba(184, 107, 53, 0.6);
  --border-dark: rgba(255, 255, 255, 0.1);

  /* WhatsApp Brand */
  --whatsapp-color: #25D366;
  --whatsapp-hover: #20BA5A;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.09);
  --shadow-gold: 0 8px 30px rgba(184, 107, 53, 0.25);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.4);

  /* Typography Families */
  --font-serif: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-arabic: 'Almarai', system-ui, -apple-system, sans-serif;
  --font-arabic-unified: 'Almarai', system-ui, -apple-system, sans-serif;

  /* Layout & Sizing — Unified 1300px Container from Header to Footer */
  --container-max: 1300px;
  --container-narrow: 1300px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  --header-height: 80px;
}

/* ==========================================================================
   Custom Luxury Scrollbar
   ========================================================================== */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #111215;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4AF37 0%, #A98226 100%);
  border-radius: var(--radius-pill);
  border: 2px solid #111215;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #F5DF9E 0%, #D4AF37 100%);
  box-shadow: 0 0 10px rgba(184, 107, 53, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #D4AF37 #111215;
}

/* ==========================================================================
   Luxury Mouse Cursor (Desktop / Pointer Devices)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 0 8px rgba(184, 107, 53, 0.8);
  }

  .custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(184, 107, 53, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease-out, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  }

  .cursor-hover .custom-cursor-dot {
    transform: translate(-50%, -50%) scale(1.6);
    background-color: #FFFFFF;
  }

  .cursor-hover .custom-cursor-ring {
    transform: translate(-50%, -50%) scale(1.4);
    border-color: var(--gold-primary);
    background-color: rgba(184, 107, 53, 0.08);
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ==========================================================================
   Unified 100% Arabic Typography Engine (Almarai Standard)
   ========================================================================== */
:lang(ar),
[dir="rtl"],
[dir="rtl"] body,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] p, [dir="rtl"] span, [dir="rtl"] a, [dir="rtl"] button, [dir="rtl"] input,
[dir="rtl"] select, [dir="rtl"] textarea, [dir="rtl"] blockquote, [dir="rtl"] label,
[dir="rtl"] .section-title, [dir="rtl"] .hero-title, [dir="rtl"] .hero-subtitle,
[dir="rtl"] .btn, [dir="rtl"] .nav-link, [dir="rtl"] .spec-chip, [dir="rtl"] .stay-duration-title,
[dir="rtl"] .destination-title, [dir="rtl"] .review-quote, [dir="rtl"] .reviewer-name,
[dir="rtl"] .faq-question, [dir="rtl"] .faq-answer {
  font-family: 'Almarai', system-ui, -apple-system, sans-serif !important;
  letter-spacing: 0 !important;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] .hero-title, [dir="rtl"] .section-title, [dir="rtl"] .studio-card-title,
[dir="rtl"] .reception-title, [dir="rtl"] .destination-title, [dir="rtl"] .stay-duration-title {
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

[dir="rtl"] .btn, [dir="rtl"] .spec-chip, [dir="rtl"] .studio-badge, [dir="rtl"] .reception-badge, [dir="rtl"] .stay-purpose-pill {
  font-weight: 700 !important;
}


/* Clean Phone Number Formatting */
.phone-number {
  direction: ltr !important;
  display: inline-block;
  unicode-bidi: embed;
  white-space: nowrap;
  font-family: var(--font-sans) !important;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3.5vw, 32px);
  padding-right: clamp(16px, 3.5vw, 32px);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3.5vw, 32px);
  padding-right: clamp(16px, 3.5vw, 32px);
}

.section {
  padding: clamp(60px, 9vw, 100px) 0;
  position: relative;
  width: 100%;
}

.section-alt {
  background-color: var(--bg-section-alt);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 6vw, 54px) auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: clamp(0.72rem, 1.8vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold-subtle);
  color: var(--text-gold);
  border: 1px solid var(--border-gold);
  margin-bottom: 14px;
}

.section-dark .section-tag {
  background: rgba(184, 107, 53, 0.15);
  border-color: rgba(184, 107, 53, 0.35);
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-dark .section-title {
  color: var(--text-on-dark);
}

.section-desc {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-dark .section-desc {
  color: var(--text-muted-on-dark);
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
  min-height: 46px;
  text-align: center;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #121316;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 107, 53, 0.35);
  filter: brightness(1.05);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #FFFFFF;
  box-shadow: 0 6px 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-gold-strong);
}

.btn-outline:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  min-height: 38px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  min-height: 52px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  background: rgba(17, 18, 21, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 107, 53, 0.18);
}

.site-header.scrolled {
  height: 68px;
  background: rgba(17, 18, 21, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(184, 107, 53, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: clamp(53px, 7.5vw, 63px);
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .brand-logo img {
  height: clamp(49px, 6.5vw, 57px);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(16px, 2vw, 28px);
}

.nav-link {
  color: rgba(250, 248, 245, 0.9);
  font-size: 1rem;
  font-weight: 600;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.25s ease;
}

[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher Pill */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(184, 107, 53, 0.3);
  border-radius: var(--radius-pill);
  padding: 2px 3px;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--gold-gradient);
  color: #121316;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 107, 53, 0.3);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 22px;
  background-color: var(--gold-light);
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-gold);
  z-index: 1100;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .mobile-nav-drawer {
  right: auto;
  left: -320px;
  border-left: none;
  border-right: 1px solid var(--border-gold);
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  right: 0;
}
[dir="rtl"] .mobile-nav-overlay.open .mobile-nav-drawer {
  left: 0;
  right: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
  color: var(--gold-light);
  font-size: 2rem;
  line-height: 1;
  padding: 4px 8px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  color: var(--text-on-dark);
  font-weight: 500;
  display: block;
  padding: 6px 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  min-height: 90svh;
  padding-top: calc(var(--header-height) + clamp(30px, 6vh, 60px));
  padding-bottom: clamp(40px, 6vh, 70px);
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/hero/hero_main.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(1.15);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(17, 18, 21, 0.3) 0%, rgba(17, 18, 21, 0.88) 85%),
              linear-gradient(to bottom, rgba(17, 18, 21, 0.6) 0%, transparent 40%, rgba(17, 18, 21, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 107, 53, 0.15);
  border: 1px solid rgba(184, 107, 53, 0.4);
  backdrop-filter: blur(12px);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 95%;
  line-height: 1.4;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.18rem);
  color: rgba(250, 248, 245, 0.9);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 32px auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 6vh, 50px);
}

/* Quick Highlights Grid inside Hero */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  max-width: 820px;
  margin: 0 auto;
}

.highlight-card {
  background: rgba(25, 27, 32, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 107, 53, 0.25);
  border-radius: var(--radius-md);
  padding: clamp(14px, 2vw, 18px);
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  background: rgba(25, 27, 32, 0.9);
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.highlight-desc {
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  color: var(--text-muted-on-dark);
  line-height: 1.45;
}

/* ==========================================================================
   Quick Trust Bar
   ========================================================================== */
.trust-bar-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: clamp(24px, 4vw, 34px) 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background-color 0.25s ease;
}

.trust-item:hover {
  background-color: var(--bg-section-alt);
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.15rem;
}

.trust-info h4 {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.trust-info p {
  font-size: clamp(0.76rem, 1.6vw, 0.84rem);
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   Choose Your Studio (4s Autoplay Sliders & Cards)
   ========================================================================== */
.studios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.studio-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.studio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold-strong);
}

/* Studio Image Slider Container */
.studio-slider-wrapper {
  position: relative;
  width: 100%;
  height: clamp(230px, 30vw, 280px);
  overflow: hidden;
  background-color: #1a1a1a;
  touch-action: pan-y;
}

.studio-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.studio-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  cursor: zoom-in;
}

.studio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.studio-slide:hover img {
  transform: scale(1.04);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(17, 18, 21, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
  z-index: 5;
  font-size: 1.2rem;
  line-height: 1;
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: #121316;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Studio Badge & Counter */
.studio-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: rgba(17, 18, 21, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 107, 53, 0.5);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
}

[dir="rtl"] .studio-badge {
  left: auto;
  right: 12px;
}

.slider-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

[dir="rtl"] .slider-counter {
  right: auto;
  left: 12px;
}

/* Studio Card Body */
.studio-card-body {
  padding: clamp(18px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.studio-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Specs Chips Row */
.studio-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.studio-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.studio-best-for {
  background: var(--gold-subtle);
  border: 1px dashed var(--border-gold);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.studio-card-actions {
  margin-top: auto;
}

.studio-card-actions .btn {
  width: 100%;
}

/* ==========================================================================
   Why Horus Section
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px) clamp(18px, 3vw, 26px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.why-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

.why-card-title {
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Location & Map Section
   ========================================================================== */
.location-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.location-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.location-address-box {
  background: var(--bg-section-alt);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: clamp(16px, 3vw, 22px);
  margin-bottom: 24px;
}

.location-address-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.location-address-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
}

.location-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}

.location-point-item {
  display: flex;
  gap: 12px;
}

.point-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.point-text h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}

.point-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Map Interactive Container */
.map-embed-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-gold);
  height: clamp(300px, 40vw, 480px);
  width: 100%;
  position: relative;
  background: #202228;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ==========================================================================
   Stay Your Way (Flexible Durations) — Luxury 3D Redesign
   ========================================================================== */
.stay-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: 20px;
}

@media (max-width: 992px) {
  .stay-options-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }
}

.stay-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 36px) clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.stay-option-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(184, 107, 53, 0.18);
}

.stay-option-card.featured {
  border-color: var(--border-gold-strong);
  background: linear-gradient(180deg, rgba(184, 107, 53, 0.06) 0%, var(--bg-card) 100%);
  box-shadow: var(--shadow-md);
}

.stay-featured-badge {
  position: absolute;
  top: 14px;
  right: 18px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(184, 107, 53, 0.3);
}

[dir="rtl"] .stay-featured-badge {
  right: auto;
  left: 18px;
}

.stay-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.stay-icon-box {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(184, 107, 53, 0.15) 0%, rgba(232, 163, 116, 0.25) 100%);
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  box-shadow: 0 6px 14px rgba(184, 107, 53, 0.12);
  transition: transform 0.3s ease;
}

.stay-option-card:hover .stay-icon-box {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
  color: #FFFFFF;
}

.stay-top-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stay-duration-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.stay-purpose-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
}

.stay-desc-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 48px;
}

.stay-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed var(--border-light);
  padding-top: 18px;
  flex-grow: 1;
}

.stay-feature-point {
  font-size: 0.84rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.stay-check-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(184, 107, 53, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stay-card-btn {
  margin-top: auto;
  width: 100%;
}


/* ==========================================================================
   The Horus Experience
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.pillar-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px) clamp(16px, 3vw, 24px);
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  background: var(--bg-dark-elevated);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184, 107, 53, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px auto;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-muted-on-dark);
  line-height: 1.6;
}

/* ==========================================================================
   Discover Cairo (4s Autoplay & Infinite Loop Slider)
   ========================================================================== */
.destinations-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px 0;
}

.destinations-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.destination-slide {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 260px;
  position: relative;
  height: clamp(320px, 38vw, 400px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-slide:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-slide:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(17, 18, 21, 0.95) 0%, rgba(17, 18, 21, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 3vw, 24px) clamp(14px, 2.5vw, 20px);
}

.destination-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.destination-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.destinations-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.dest-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.dest-arrow-btn:hover {
  background: var(--gold-primary);
  color: #121316;
  transform: scale(1.08);
}

.dest-dots-row {
  display: flex;
  gap: 8px;
}

.dest-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}

/* ==========================================================================
   Social Proof / Reviews (Swipeable 3-Per-View Slider with Infinite Loop)
   ========================================================================== */
.reviews-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px 0;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 30px) clamp(16px, 2.5vw, 24px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .review-slide {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 280px;
  }
}

@media (max-width: 640px) {
  .review-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.review-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.review-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.reviews-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.reviews-dots-row {
  display: flex;
  gap: 8px;
}

.review-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-info h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ==========================================================================
   FAQ Section (Clean 1-Column Centered Accordion with Smooth CSS Transition)
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 24px rgba(184, 107, 53, 0.12);
}

.faq-question {
  width: 100%;
  padding: clamp(18px, 3vw, 22px) clamp(20px, 3vw, 26px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 700;
  color: var(--text-main);
  background: transparent;
  gap: 16px;
  cursor: pointer;
  border: none;
  outline: none;
}

[dir="rtl"] .faq-question {
  text-align: right;
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(184, 107, 53, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq-item.active .faq-icon {
  background: var(--gold-primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 clamp(20px, 3vw, 26px);
}

.faq-answer p {
  padding-bottom: clamp(18px, 3vw, 22px);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
  padding-top: 14px;
  margin: 0;
}


/* ==========================================================================
   Smart Luxury Booking Form (Redesigned & Elevated)
   ========================================================================== */
.booking-actions-card {
  background: radial-gradient(circle at top right, rgba(184, 107, 53, 0.08) 0%, rgba(17, 18, 21, 0.98) 60%), #111215;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(34px, 6vw, 60px) clamp(20px, 4.5vw, 48px);
  box-shadow: var(--shadow-dark), 0 0 30px rgba(184, 107, 53, 0.12);
  position: relative;
  overflow: hidden;
}

.booking-form-wrapper {
  max-width: 820px;
  margin: 32px auto 0 auto;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 26px;
  text-align: left;
}

[dir="rtl"] .booking-form-grid {
  text-align: right;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.4px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(25, 27, 32, 0.85);
  border: 1px solid rgba(184, 107, 53, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(30, 32, 38, 0.95);
  box-shadow: 0 0 14px rgba(184, 107, 53, 0.3);
}

.form-select option {
  background: #191B20;
  color: #FFFFFF;
  padding: 10px;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.booking-form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.booking-form-actions .btn {
  width: 100%;
  max-width: 480px;
}

/* ==========================================================================
   Final CTA Banner
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(135deg, #181A20 0%, #111215 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: clamp(50px, 8vw, 80px) 0;
  text-align: center;
  position: relative;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}

.final-cta-desc {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

/* ==========================================================================
   Centered Luxury Footer (Clean, Unified & Balanced)
   ========================================================================== */
.site-footer {
  background: #0B0C0E;
  color: #FFFFFF;
  padding: clamp(48px, 6vw, 70px) 0 28px 0;
  border-top: 1px solid rgba(184, 107, 53, 0.25);
  text-align: center;
}

.footer-centered-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.footer-brand-centered {
  margin-bottom: 22px;
}

.footer-brand-centered img {
  height: clamp(57px, 7.5vw, 67px);
  width: auto;
  margin: 0 auto 12px auto;
}

.footer-tagline {
  color: var(--text-muted-on-dark);
  font-size: 0.95rem;
}

/* Centered Navigation Links */
.footer-nav-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 26px);
  list-style: none;
  margin-bottom: 24px;
}

.footer-nav-simple a {
  color: rgba(250, 248, 245, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav-simple a:hover {
  color: var(--gold-light);
}

/* Centered Address & Phone Box */
.footer-address-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 107, 53, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  margin-bottom: 24px;
  max-width: 680px;
  width: 100%;
}

.footer-address-pill p {
  color: var(--text-muted-on-dark);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.footer-phone-link:hover {
  color: #FFFFFF;
}

/* Centered Social Icons Row */

/* ==========================================================================
   Luxury Social Icons Row (Glassmorphic & Brand Hover Glows)
   ========================================================================== */
.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(184, 107, 53, 0.35);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.footer-social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  color: #FFFFFF;
}

.footer-social-btn.social-wa:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-social-btn.social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.footer-social-btn.social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.footer-social-btn.social-tt:hover {
  background: #000000;
  border-color: #25F4EE;
  box-shadow: 0 6px 20px rgba(37, 244, 238, 0.4), 0 0 10px rgba(254, 44, 85, 0.4);
}

.footer-social-btn.social-maps:hover {
  background: #EA4335;
  border-color: #EA4335;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}


.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.agency-credit-link {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.agency-credit-link:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   Mobile Sticky WhatsApp Floating Bar
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(17, 18, 21, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-gold);
  display: none;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}

.mobile-sticky-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp-color);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px var(--whatsapp-glow);
}

/* ==========================================================================
   Full Screen Lightbox Modal & Interactive Slider
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 16px;
  touch-action: pan-y;
}

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

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
}

.lightbox-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  max-height: 72vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-dark);
  transition: opacity 0.25s ease;
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 14px;
  font-size: clamp(0.88rem, 2vw, 1rem);
  text-align: center;
  font-weight: 500;
}

.lightbox-dots-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.lightbox-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}

.lightbox-close {
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

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

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2010;
}

.lightbox-arrow:hover {
  background: var(--gold-primary);
  color: #121316;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: clamp(10px, 3vw, 30px);
}

.lightbox-next {
  right: clamp(10px, 3vw, 30px);
}

/* ==========================================================================
   Breakpoints & Complete Multi-Screen Responsiveness
   ========================================================================== */

/* Laptop & Tablet Landscape (<= 1024px) */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait & Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links, .nav-actions #headerBookBtn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  
  /* Mobile Sticky Bar */
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  /* Hero Section */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 340px;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Sections */
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .studios-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .location-wrapper {
    grid-template-columns: 1fr;
  }
  .location-points-grid {
    grid-template-columns: 1fr;
  }
  .stay-options-grid {
    grid-template-columns: 1fr;
  }
  .destination-slide {
    flex: 0 0 100%;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  /* Touch controls always visible */
  .slider-btn {
    opacity: 0.9 !important;
  }
}

/* Small Screens & Compact Phones (<= 480px) */
@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   Dedicated Reception & Lobby Showcase Section
   ========================================================================== */
.reception-section {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-section-alt) 100%);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.reception-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

@media (max-width: 992px) {
  .reception-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.reception-gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold-strong);
  background: #111215;
}

.reception-slider-wrapper {
  position: relative;
  width: 100%;
  height: clamp(280px, 38vw, 440px);
  overflow: hidden;
  touch-action: pan-y;
}

.reception-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reception-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  cursor: zoom-in;
}

.reception-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.reception-slide:hover img {
  transform: scale(1.03);
}

.reception-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: rgba(17, 18, 21, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

[dir="rtl"] .reception-badge {
  left: auto;
  right: 16px;
}

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

.reception-header-tag {
  color: var(--text-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.reception-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.reception-desc {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
}

.reception-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 580px) {
  .reception-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.reception-feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.25s ease;
}

.reception-feature-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.reception-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.reception-feature-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.reception-feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.reception-actions {
  margin-top: 10px;
}





/* Ensure Slider Nav Rows Always Keep Left/Right Arrow Positions */
.destinations-nav-row,
.reviews-nav-row {
  direction: ltr !important;
}


/* RTL Arrow Direction Alignment */
[dir="rtl"] .hero-actions .btn-secondary svg,
[dir="rtl"] .btn svg.arrow-icon,
[dir="rtl"] .destination-overlay svg.arrow-icon {
  transform: scaleX(-1);
}


/* Smooth Scrolling & Hardware Acceleration */
.studio-slide img,
.destination-slide img,
.reception-hero-slide img,
.slider-track,
.destinations-track,
.reviews-track {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  transform: translateZ(0);
  will-change: transform;
}
