/* ==========================================================================
   Amaken Tours - Ultra-High Performance & Feather-Light Neon Purple & Mint Theme
   Optimized for 60-120 FPS buttery smooth scrolling, GPU acceleration & Zero Lag
   ========================================================================== */

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

:root {
  --bg-deep:          #080114;
  --bg-section-dark:  #0F0324;
  --bg-section-light: #160633;
  --bg-card-glass:    rgba(22, 6, 44, 0.92);

  --brand-purple-950: #0A0118;
  --brand-purple-900: #190433;
  --brand-purple-800: #2E0854;
  --brand-purple-700: #4D217B;
  --brand-purple-600: #6D28D9;
  --brand-purple-500: #8B5CF6;
  --brand-purple-400: #A855F7;
  --brand-purple-300: #C084FC;

  --brand-green-600:  #059669;
  --brand-green-500:  #10B981;
  --brand-green-400:  #14C38E;
  --brand-green-300:  #00FFA3;
  --brand-green-200:  #6EE7B7;

  --text-main:        #FFFFFF;
  --text-muted:       #CBD5E1;
  --text-sub:         #94A3B8;
  --whatsapp:         #25D366;
  --white:            #FFFFFF;

  /* Typography */
  --font-en-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Snappy Transitions */
  --transition-fast: 0.18s ease-out;
  --transition-normal: 0.28s ease-out;
}

/* ==========================================================================
   Base & High-Performance Hardware Accelerated Background
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-en-sans);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Static, non-repainting GPU Royal Purple Aurora Background Layer */
.ambient-bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(168, 85, 247, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(124, 58, 237, 0.32) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(147, 51, 234, 0.26) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(77, 33, 123, 0.20) 0%, transparent 60%);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

body.lang-ar {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
}

/* Lightweight 60FPS Canvas */
.bg-interactive-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  transform: translate3d(0, 0, 0);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color var(--transition-fast), padding var(--transition-fast), box-shadow var(--transition-fast);
  padding: 0.85rem 0;
  background: rgba(10, 1, 24, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transform: translate3d(0, 0, 0);
}

.site-header .container {
  max-width: 1440px;
  padding: 0 2rem;
}

.site-header.scrolled {
  background: rgba(10, 1, 24, 0.98);
  padding: 0.6rem 0;
  border-bottom-color: rgba(168, 85, 247, 0.65);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo-wrap:hover {
  transform: scale(1.03);
}

.brand-logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 3px;
  box-shadow: 0 0 12px rgba(0, 255, 163, 0.4);
}

.brand-title-dual {
  display: flex;
  flex-direction: column;
}

.brand-name-en {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-name-en .text-green {
  color: var(--brand-green-300);
  text-shadow: 0 0 10px rgba(0, 255, 163, 0.5);
}

.brand-name-en .text-purple {
  color: var(--white);
}

.brand-name-ar {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-name-ar .text-green {
  color: var(--brand-green-300);
}

.brand-name-ar .text-purple {
  color: rgba(255, 255, 255, 0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(0.75rem, 1.25vw, 1.6rem);
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.nav-links li {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.94rem;
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-green-300);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green-300);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 163, 0.4);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-lang:hover, .btn-lang.active {
  background: rgba(0, 255, 163, 0.2);
  border-color: var(--brand-green-300);
  color: var(--brand-green-300);
  box-shadow: 0 0 14px rgba(0, 255, 163, 0.3);
}

.lang-dropdown-panel {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .lang-dropdown-panel {
    min-width: 240px !important;
    max-width: 90vw !important;
    max-height: 360px !important;
  }
}

#panelWorldLangsList::-webkit-scrollbar {
  width: 5px;
}
#panelWorldLangsList::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}
#panelWorldLangsList::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.45);
  border-radius: 4px;
}
#panelWorldLangsList::-webkit-scrollbar-thumb:hover {
  background: var(--brand-green-300);
}
#panelWorldLangsList {
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 85, 247, 0.45) rgba(255, 255, 255, 0.03);
}

.panel-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-align: start;
  transition: all 0.2s ease;
}

.panel-lang-btn .code-badge {
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(168, 85, 247, 0.2);
  color: #C084FC;
  padding: 0.12rem 0.45rem;
  border-radius: 5px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  transition: all 0.2s ease;
}

.panel-lang-btn:hover {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(168, 85, 247, 0.5);
  color: #fff;
}

.panel-lang-btn.active-lang {
  background: rgba(0, 255, 163, 0.12) !important;
  border-color: var(--brand-green-300) !important;
  color: var(--brand-green-300) !important;
  box-shadow: 0 0 10px rgba(0, 255, 163, 0.18) !important;
}

.panel-lang-btn.active-lang .code-badge {
  background: var(--brand-green-400) !important;
  color: #0d0118 !important;
  border-color: var(--brand-green-300) !important;
  font-weight: 900 !important;
}

.btn-contact-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-green-400), var(--brand-green-300));
  color: var(--brand-purple-950);
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(0, 255, 163, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-contact-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 255, 163, 0.7);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 163, 0.4);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: rgba(0, 255, 163, 0.15);
  border-color: var(--brand-green-300);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--brand-green-300);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--brand-green-300);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5rem 0 5.5rem;
  background: transparent;
  color: var(--white);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(0, 255, 163, 0.12);
  border: 1.5px solid rgba(0, 255, 163, 0.6);
  color: var(--brand-green-300);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 18px rgba(0, 255, 163, 0.35);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  color: var(--white);
}

body.lang-ar .hero-title {
  font-weight: 900;
  line-height: 1.35;
  font-size: 3.35rem;
}

.hero-title-highlight {
  color: var(--brand-green-300);
  text-shadow: 0 0 25px rgba(0, 255, 163, 0.5);
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* Quick Search Card */
.search-widget-wrapper {
  background: rgba(22, 6, 44, 0.94);
  border: 1.5px solid rgba(0, 255, 163, 0.5);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 255, 163, 0.25);
}

.search-form {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
}

.search-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color var(--transition-fast);
}

body.lang-ar .search-field-group {
  text-align: right;
}

.search-field-group:focus-within {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--brand-green-300);
}

.search-field-group label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-green-300);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.search-select {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  width: 100%;
  cursor: pointer;
}

.search-select option {
  background: var(--brand-purple-900);
  color: var(--white);
  padding: 0.6rem;
}

.btn-search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-green-400), var(--brand-green-300));
  color: var(--brand-purple-950);
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: 0 6px 18px rgba(0, 255, 163, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  height: 100%;
  min-height: 52px;
}

.btn-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 163, 0.65);
}

/* ==========================================================================
   Section Landmark Background Overlays (Ultra Lightweight)
   ========================================================================== */

.section-with-bg {
  position: relative;
  overflow: hidden;
}

.section-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.11;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.bg-abu-simbel {
  background-image: url('../images/destinations/abu_simbel.jpg');
}

.bg-karnak {
  background-image: url('../images/destinations/karnak_temple.jpg');
}

.bg-hatshepsut {
  background-image: url('../images/destinations/hatshepsut_temple.jpg');
}

.bg-nile-cruise {
  background-image: url('../images/destinations/nile_cruise.jpg');
}

.bg-philae {
  background-image: url('../images/destinations/philae_temple.jpg');
}

.bg-citadel {
  background-image: url('../images/destinations/cairo_citadel.jpg');
}

.bg-pyramids {
  background-image: url('../images/destinations/giza_pyramids.jpg');
}

/* ==========================================================================
   Service Pillars Bar
   ========================================================================== */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.pillar-card {
  background: var(--bg-card-glass);
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  will-change: transform;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-green-300);
}

.pillar-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.15);
  color: var(--brand-green-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 255, 163, 0.4);
}

.pillar-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.section {
  padding: 6.5rem 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
  position: relative;
}

.section-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-green-300);
  background: rgba(0, 255, 163, 0.12);
  padding: 0.4rem 1.35rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1.5px solid rgba(0, 255, 163, 0.45);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

body.lang-ar .section-title {
  font-weight: 900;
  line-height: 1.4;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ==========================================================================
   Destinations Section
   ========================================================================== */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.destination-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  will-change: transform;
}

.destination-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-green-300);
}

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

.destination-card:hover .destination-img {
  transform: scale(1.06);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(8, 1, 20, 0.05) 0%, rgba(8, 1, 20, 0.90) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.85rem;
  color: var(--white);
}

.destination-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--brand-green-400);
  color: var(--brand-purple-950);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(0, 255, 163, 0.5);
}

body.lang-ar .destination-badge {
  right: auto;
  left: 1.25rem;
}

.destination-name {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.destination-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.destination-tours-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-green-300);
}

/* ==========================================================================
   Tours & Packages Catalog
   ========================================================================== */

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-card-glass);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(168, 85, 247, 0.25);
  color: var(--brand-green-300);
  border-color: var(--brand-green-300);
}

.filter-btn.active {
  background: var(--brand-purple-700);
  color: var(--brand-green-300);
  border-color: var(--brand-green-300);
  box-shadow: 0 0 18px rgba(0, 255, 163, 0.4);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tour-card {
  background: var(--bg-card-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(168, 85, 247, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  will-change: transform;
}

.tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-green-300);
}

.tour-card-header {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.tour-card:hover .tour-card-img {
  transform: scale(1.06);
}

.tour-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-purple-800);
  color: var(--brand-green-300);
  border: 1px solid rgba(0, 255, 163, 0.5);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

body.lang-ar .tour-card-badge {
  left: auto;
  right: 1rem;
}

.tour-card-destination {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(8, 1, 20, 0.92);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

body.lang-ar .tour-card-destination {
  left: auto;
  right: 1rem;
}

.tour-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-sub);
}

.tour-duration {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text-muted);
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--brand-green-300);
  font-weight: 800;
}

.tour-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.tour-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-highlights-list {
  list-style: none;
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tour-highlight-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tour-highlight-item svg {
  color: var(--brand-green-300);
  flex-shrink: 0;
  margin-top: 3px;
}

.tour-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tour-price-box {
  display: flex;
  flex-direction: column;
}

.tour-price-from {
  font-size: 0.75rem;
  color: var(--text-sub);
  text-transform: uppercase;
  font-weight: 600;
}

.tour-price-amount {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--brand-green-300);
  line-height: 1;
}

.tour-price-amount span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-sub);
}

.btn-card-book {
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-green-400), var(--brand-green-300));
  color: var(--brand-purple-950);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(0, 255, 163, 0.4);
  transition: transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-card-book:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ==========================================================================
   Custom Trip Planner Form
   ========================================================================== */

.custom-planner-card {
  background: rgba(22, 6, 44, 0.95);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(0, 255, 163, 0.5);
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.custom-planner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-purple-500), var(--brand-green-300), var(--brand-purple-400));
}

.planner-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}

.planner-step-col h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-green-300);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-green-300);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.custom-checkbox-label:hover {
  color: var(--brand-green-300);
}

.custom-checkbox-label input[type="checkbox"] {
  accent-color: var(--brand-green-300);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-input-clean {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 600;
  outline: none;
  margin-bottom: 0.85rem;
  transition: border-color var(--transition-fast);
}

.form-input-clean:focus {
  border-color: var(--brand-green-300);
  background: rgba(255, 255, 255, 0.12);
}

.planner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-planner-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 3rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-green-400), var(--brand-green-300));
  color: var(--brand-purple-950);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 0 25px rgba(0, 255, 163, 0.5);
  transition: transform var(--transition-fast);
}

.btn-planner-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.feature-box {
  background: var(--bg-card-glass);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(168, 85, 247, 0.3);
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  will-change: transform;
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--brand-green-300);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.35rem;
  border-radius: 18px;
  background: rgba(168, 85, 247, 0.15);
  color: var(--brand-green-300);
  border: 1px solid rgba(0, 255, 163, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.65rem;
}

/* ==========================================================================
   History Page Article Cards (Ultra High-Contrast & Crystal Clear)
   ========================================================================== */

.history-article-card {
  background: var(--bg-card-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  will-change: transform;
}

.history-article-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green-300);
}

.history-article-reversed {
  grid-template-columns: 1.2fr 1fr;
}

.history-article-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.history-article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-article-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.history-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-green-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
  text-shadow: 0 0 10px rgba(0, 255, 163, 0.4);
}

.history-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.history-desc {
  color: #E2E8F0;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

@media (max-width: 860px) {
  .history-article-card, .history-article-reversed {
    grid-template-columns: 1fr;
  }
  .history-article-body {
    padding: 1.75rem;
  }
}

/* ==========================================================================
   Modals
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 1, 20, 0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

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

.modal-card {
  background: rgba(25, 7, 51, 0.98);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
  border: 1.5px solid rgba(0, 255, 163, 0.5);
  position: relative;
}

.modal-header {
  background: var(--brand-purple-900);
  color: var(--white);
  padding: 1.5rem 1.85rem;
  position: relative;
  border-bottom: 2px solid var(--brand-green-300);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

body.lang-ar .modal-close-btn {
  right: auto;
  left: 1.25rem;
}

.modal-close-btn:hover {
  background: var(--brand-green-300);
  color: var(--brand-purple-950);
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-green-300);
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-body {
  padding: 1.85rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 600;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-color: var(--brand-green-300);
  background: rgba(255, 255, 255, 0.12);
}

.btn-whatsapp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  background: var(--whatsapp);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition-fast);
}

.btn-whatsapp-submit:hover {
  background: #20BA56;
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: rgba(8, 1, 20, 0.98);
  color: var(--text-muted);
  padding: 5rem 0 2rem;
  border-top: 2px solid var(--brand-purple-500);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-green-300);
  margin-bottom: 1.35rem;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

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

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

.footer-links a:hover {
  color: var(--brand-green-300);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  color: var(--brand-green-300);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 1.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
  z-index: 99;
  transition: transform var(--transition-fast);
}

body.lang-ar .floating-whatsapp {
  right: auto;
  left: 2rem;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

.tour-details-layout-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  body.lang-ar .hero-title {
    font-size: 2.6rem;
  }
  .destinations-grid, .tours-grid, .features-grid, .pillars-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .planner-form-grid {
    grid-template-columns: 1fr;
  }
  .tour-details-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Desktop Nav Links elements */
@media (min-width: 1101px) {
  .nav-link-icon,
  .nav-link-desc,
  .nav-link-chevron,
  .nav-link-vip-badge {
    display: none !important;
  }
  .nav-link-text {
    display: inline !important;
  }
}

@keyframes mobileDrawerSlide {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0.65rem 0;
  }
  .header-nav {
    padding: 0;
  }
  .nav-links {
    display: none;
    list-style: none !important;
    margin: 0;
    padding: 0;
  }
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 2, 24, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 1.15rem 1rem 1.6rem;
    border-bottom: 2px solid rgba(0, 255, 163, 0.35);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(168, 85, 247, 0.15);
    gap: 0.55rem;
    z-index: 9999;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    animation: mobileDrawerSlide 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.mobile-open li {
    list-style: none !important;
    width: 100%;
  }
  .nav-links.mobile-open .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
    text-decoration: none;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
  }
  .nav-links.mobile-open .nav-link::after {
    display: none !important;
  }
  .nav-links.mobile-open .nav-link-icon {
    display: flex !important;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-inline-end: 0.85rem;
  }
  .nav-links.mobile-open .icon-purple {
    background: rgba(168, 85, 247, 0.16);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: #C084FC;
  }
  .nav-links.mobile-open .icon-green {
    background: rgba(0, 255, 163, 0.16);
    border: 1px solid rgba(0, 255, 163, 0.4);
    color: #00FFA3;
  }
  .nav-links.mobile-open .icon-blue {
    background: rgba(56, 189, 248, 0.16);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38BDF8;
  }
  .nav-links.mobile-open .icon-gold {
    background: rgba(234, 179, 8, 0.16);
    border: 1px solid rgba(234, 179, 8, 0.35);
    color: #FACC15;
  }
  .nav-links.mobile-open .nav-link-text {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    text-align: start;
    min-width: 0;
  }
  .nav-links.mobile-open .nav-link-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
  }
  .nav-links.mobile-open .nav-link-desc {
    display: block !important;
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-links.mobile-open .nav-link-vip-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00FFA3, #059669);
    color: #0d0118;
    padding: 0.18rem 0.55rem;
    border-radius: 6px;
    margin-inline-end: 0.65rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
  }
  .nav-links.mobile-open .nav-link-chevron {
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.22s ease, color 0.22s ease;
    flex-shrink: 0;
  }
  .nav-links.mobile-open .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
  }
  .nav-links.mobile-open .nav-link:hover .nav-link-chevron {
    color: #fff;
    transform: translateX(4px);
  }
  body.lang-ar .nav-links.mobile-open .nav-link:hover .nav-link-chevron {
    transform: translateX(-4px);
  }
  .nav-links.mobile-open .nav-link.active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(0, 255, 163, 0.1)) !important;
    border-color: var(--brand-green-300) !important;
    box-shadow: 0 6px 22px rgba(0, 255, 163, 0.15) !important;
  }
  .nav-links.mobile-open .nav-link.active .nav-link-title {
    color: var(--brand-green-300) !important;
  }
  .nav-links.mobile-open .nav-link.active .nav-link-chevron {
    color: var(--brand-green-300) !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  body.lang-ar .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.55rem 0;
  }
  .site-header .container {
    padding: 0 0.85rem;
  }
  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
  }
  .brand-logo-wrap {
    gap: 0.45rem;
    flex-shrink: 1;
    min-width: 0;
  }
  .brand-logo-img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .brand-title-dual {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
  }
  .brand-name-en {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-name-ar {
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }
  .btn-lang {
    padding: 0.38rem 0.65rem;
    font-size: 0.82rem;
    gap: 0.28rem;
    border-radius: var(--radius-full);
  }
  .btn-contact-header {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .btn-contact-header span {
    display: none;
  }
  .btn-contact-header svg {
    width: 18px;
    height: 18px;
  }
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    padding: 0.4rem;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex !important;
  }
  .mobile-menu-btn span {
    width: 18px;
    height: 2px;
  }

  .hero-showcase-section {
    padding: 5.5rem 0 2.5rem;
  }
  .hero-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hero-carousel-card {
    min-height: 330px;
    border-radius: 20px;
  }
  .hero-carousel-track {
    min-height: 330px;
  }
  .hero-carousel-badge {
    padding: 0.75rem 1rem;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    border-radius: 14px;
    gap: 0.65rem;
  }
  .hero-carousel-loc {
    font-size: 0.68rem;
  }
  .hero-carousel-title {
    font-size: 0.98rem;
  }
  .hero-carousel-arrow {
    width: 28px;
    height: 28px;
  }
  .hero-features-stack {
    gap: 0.75rem;
  }
  .hero-feature-card {
    padding: 0.95rem 1.15rem;
    border-radius: 14px;
  }
  .feature-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }
  .feature-card-text h4 {
    font-size: 0.98rem;
  }
  .feature-card-text p {
    font-size: 0.78rem;
  }

  .destinations-grid, .tours-grid, .features-grid, .pillars-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .custom-planner-card {
    padding: 1.5rem 1rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .filter-bar {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }
  body.lang-ar .floating-whatsapp {
    left: 1.5rem;
    right: auto;
  }
  .modal-card {
    padding: 1.75rem 1.25rem;
    margin: 1rem;
    width: calc(100% - 2rem);
  }
  .form-input, .form-select {
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
    padding: 0.85rem 1rem;
  }
  .guest-pill {
    padding: 0.45rem 0.6rem !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .site-header .container {
    padding: 0 0.65rem;
  }
  .brand-logo-img {
    height: 32px;
    width: 32px;
  }
  .brand-name-en {
    font-size: 0.98rem;
  }
  .brand-name-ar {
    font-size: 0.68rem;
  }
  .btn-lang {
    padding: 0.35rem 0.55rem;
    font-size: 0.78rem;
  }
  .btn-contact-header {
    width: 34px;
    height: 34px;
  }
  .mobile-menu-btn {
    width: 34px;
    height: 34px;
  }
  .tour-card-header {
    height: 200px;
  }
  .tour-card-body {
    padding: 1.25rem;
  }
}
/* ==========================================================================
   Completely Hide All Google Translate UI, Banners & Tooltips
   ========================================================================== */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-gadget-icon,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-ORHb-Oxf5td,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-y6EKec,
.VIpgJd-ZVi9od-SmfZ-Ouevl,
iframe.skiptranslate,
iframe[id=":1.container"],
iframe[id=":2.container"],
.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  border: none !important;
}

body {
  top: 0px !important;
  position: static !important;
}

.panel-lang-btn.active-lang {
  background: rgba(0, 255, 163, 0.15) !important;
  border-color: var(--brand-green-300) !important;
  color: var(--brand-green-300) !important;
}

/* ==========================================================================
   Hero Showcase Section (2-Column Layout as in screenshot)
   ========================================================================== */
.hero-showcase-section {
  padding: 6.5rem 0 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Left Carousel Card */
.hero-carousel-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d0118;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  flex: 1;
  overflow: hidden;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1), transform 1.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.08);
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

.hero-carousel-slide.prev-slide {
  opacity: 0;
  transform: scale(0.96);
  z-index: 1;
}

.hero-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Bottom Badge in Carousel */
.hero-carousel-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: rgba(13, 2, 28, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.hero-carousel-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
  min-width: 0;
}

.hero-carousel-loc,
.hero-carousel-title {
  transition: opacity 0.32s cubic-bezier(0.25, 1, 0.5, 1), transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.hero-carousel-info.fade-out .hero-carousel-loc,
.hero-carousel-info.fade-out .hero-carousel-title {
  opacity: 0;
  transform: translateY(6px);
}

.hero-carousel-loc {
  font-size: 0.75rem;
  font-weight: 800;
  color: #C084FC;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-carousel-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.hero-carousel-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-carousel-arrow:hover {
  background: #A855F7;
  border-color: #C084FC;
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.6);
}

.hero-carousel-arrow:active {
  transform: scale(0.92);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, border-radius 0.45s ease, box-shadow 0.4s ease;
  will-change: width, background;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #C084FC, #A855F7);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.85);
}

/* Right Side: Features Stack */
.hero-features-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-feature-card:hover {
  transform: translateY(-3px) scale(1.01);
  background: rgba(255, 255, 255, 0.07);
}

.hero-feature-card.card-purple:hover {
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.hero-feature-card.card-gold:hover {
  border-color: rgba(234, 179, 8, 0.6);
  box-shadow: 0 10px 30px rgba(234, 179, 8, 0.2);
}

.hero-feature-card.card-blue:hover {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.hero-feature-card.highlight-green {
  background: rgba(0, 255, 163, 0.04);
  border-color: rgba(0, 255, 163, 0.35);
  box-shadow: 0 0 25px rgba(0, 255, 163, 0.12);
}

.hero-feature-card.highlight-green:hover {
  background: rgba(0, 255, 163, 0.08);
  border-color: #00FFA3;
  box-shadow: 0 10px 35px rgba(0, 255, 163, 0.28);
}

.feature-card-left {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.hero-feature-card:hover .feature-icon-badge {
  transform: scale(1.08);
}

.badge-purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.badge-gold {
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.35);
}

.badge-blue {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.badge-green {
  background: rgba(0, 255, 163, 0.18);
  border: 1px solid rgba(0, 255, 163, 0.45);
  color: #00FFA3;
}

.feature-card-text h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.25rem;
}

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

.feature-card-arrow {
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  padding-inline-start: 0.5rem;
}

.arrow-purple { color: #C084FC; }
.arrow-gold { color: #FACC15; }
.arrow-blue { color: #38BDF8; }
.arrow-green { color: #00FFA3; }

.hero-feature-card:hover .feature-card-arrow {
  transform: translateX(5px);
  color: #fff;
}

body.lang-ar .hero-feature-card:hover .feature-card-arrow {
  transform: translateX(-5px);
}

@media (max-width: 992px) {
  .hero-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-carousel-card {
    min-height: 380px;
  }
  .hero-carousel-track {
    min-height: 380px;
  }
}

/* ==========================================================================
   Flexible Payment Methods Cards
   ========================================================================== */
.payment-methods-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.payment-method-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  padding: 0.85rem 1rem !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  cursor: pointer !important;
  transition: all 0.22s ease !important;
  position: relative !important;
}

.payment-method-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.payment-method-card.active {
  background: rgba(0, 255, 163, 0.08) !important;
  border-color: var(--brand-green-300) !important;
  box-shadow: 0 4px 20px rgba(0, 255, 163, 0.12) !important;
}

.pay-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-inline-end: 0.45rem;
}

.pay-icon-badge.icon-green {
  background: rgba(0, 255, 163, 0.15);
  color: #00FFA3;
  border: 1px solid rgba(0, 255, 163, 0.35);
}

.pay-icon-badge.icon-purple {
  background: rgba(168, 85, 247, 0.15);
  color: #C084FC;
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.pay-icon-badge.icon-blue {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.modal-pay-card {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.65rem 0.85rem !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.modal-pay-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
}

.modal-pay-card.active {
  background: rgba(0, 255, 163, 0.08) !important;
  border-color: var(--brand-green-300) !important;
}
