/* ==========================================================================
   GLOBAL VILLAGE DUBAI - BALANCED VIP & TICKET BOOKING PORTAL
   Combining Festive Luxury Branding, 6 VIP Selector Cards & Direct Booking
   ========================================================================== */

:root {
  /* Brand Primary Colors */
  --gv-maroon: #7e192c;
  --gv-maroon-dark: #580e1d;
  --gv-maroon-gradient: linear-gradient(135deg, #9a2037 0%, #7e192c 60%, #580e1d 100%);

  /* Warm Gold */
  --gv-gold: #c59b27;
  --gv-gold-light: #f5d77f;
  --gv-gold-dark: #997514;
  --gv-gold-gradient: linear-gradient(135deg, #f5d77f 0%, #c59b27 50%, #997514 100%);
  --gv-gold-glow: rgba(197, 155, 39, 0.35);

  /* Royal Purple (VIP Accent) */
  --gv-purple: #7c3aed;
  --gv-purple-dark: #5b21b6;
  --gv-purple-light: #a78bfa;

  /* Neutrals & Surfaces */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-dark: #080c14;
  --bg-card-dark: #111827;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-white: #ffffff;

  --border-subtle: #e2e8f0;
  --border-gold: rgba(197, 155, 39, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 18px 35px -8px rgba(126, 25, 44, 0.15);
}

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

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

body {
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

html[lang="en"] body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Helper Typography */
.gold-gradient-text {
  background: var(--gv-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* TOP ANNOUNCEMENT BAR */
.top-announcement {
  background: var(--gv-maroon-dark);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(197, 155, 39, 0.25);
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gv-gold-light);
  box-shadow: 0 0 8px var(--gv-gold-light);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.timing-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fce7b2;
}

.lang-switch-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.lang-switch-btn:hover {
  background: var(--gv-gold);
  color: #0c101a;
  border-color: var(--gv-gold);
}

/* MAIN NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 2px solid #f1e9dc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-start-mobile {
  display: none;
}

.brand-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10;
}

.brand-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

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

.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.6rem;
}

.nav-item {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav-item:hover, .nav-item.active {
  color: var(--gv-maroon);
}

.nav-item.highlight-vip {
  color: var(--gv-purple);
  background: rgba(124, 58, 237, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-booking {
  background: var(--gv-maroon-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(126, 25, 44, 0.3);
}

.btn-booking:hover {
  background: linear-gradient(135deg, #a5233c 0%, #831a2e 60%, #5e101f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(126, 25, 44, 0.45);
}

.btn-gold {
  background: var(--gv-gold-gradient);
  color: #080c14;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.5);
  filter: brightness(1.05);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gv-maroon);
  color: var(--gv-maroon);
}

.btn-outline:hover {
  background: var(--gv-maroon);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 1.05rem;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(197, 155, 39, 0.4);
}

/* HERO SECTION (FESTIVE BANNER) */
/* HERO SECTION (FESTIVE AMBIENT LUXURY) */
/* HERO SECTION (LIGHT THEME WITH RESTORED BANNER) */
/* HERO SECTION (FULL WIDTH BANNER) */
.hero-section {
  position: relative;
  padding: 0 0 4rem;
  background: #fdfbf7;
  color: var(--text-main);
  border-bottom: 1px solid #e8dfd0;
}

.hero-banner-full {
  width: 100%;
  margin: 0 0 2.5rem 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(126, 25, 44, 0.08);
  border-bottom: 2px solid #ecdcc6;
  background: #080c14;
}

.hero-banner-full .hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 720px;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-content-box {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid var(--gv-gold);
  color: var(--gv-gold-dark);
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--gv-maroon-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: #475569;
  line-height: 1.85;
  margin-bottom: 1.8rem;
  max-width: 820px;
  margin-inline: auto;
}

.hero-highlight-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 249, 238, 0.9) 100%);
  border: 1.5px solid rgba(197, 155, 39, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  margin: 0 auto 2.2rem;
  max-width: 820px;
  box-shadow: 0 10px 25px -5px rgba(126, 25, 44, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-highlight-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(126, 25, 44, 0.1), 0 6px 15px rgba(0, 0, 0, 0.04);
}

.hero-highlight-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.highlight-sparkle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(197, 155, 39, 0.15);
  color: var(--gv-gold-dark);
  border-radius: 50%;
  font-size: 0.9rem;
}

.hero-highlight-heading {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--gv-maroon-dark);
  margin: 0;
  line-height: 1.4;
}

.hero-highlight-text {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: #334155;
  line-height: 1.8;
  margin: 0;
}

.hero-features-grid {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.feat-pill i {
  color: var(--gv-maroon);
}

.hero-action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* SECTION COMMONS */
.section {
  padding: 5rem 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.badge-pill {
  display: inline-block;
  background: rgba(126, 25, 44, 0.08);
  border: 1px solid rgba(126, 25, 44, 0.2);
  color: var(--gv-maroon);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.badge-pill.gold {
  background: rgba(197, 155, 39, 0.15);
  border-color: var(--gv-gold);
  color: var(--gv-gold-dark);
}

.section-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--gv-maroon-dark);
  margin-bottom: 0.8rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* VIP SECTION (LIGHT THEME - 6 CARDS + TEXT-ONLY SHOWCASE) */
.vip-section {
  background: #ffffff;
  color: var(--text-main);
  border-bottom: 2px solid #e8dfd0;
}

.mobile-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gv-maroon);
  background: #fdf2f4;
  border: 1px solid #fecdd3;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.packages-carousel-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
  margin-bottom: 3rem;
}

.pkg-selector-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  height: 220px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 0.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.pkg-selector-card:hover {
  transform: translateY(-5px);
  border-color: var(--gv-gold);
  box-shadow: 0 10px 25px rgba(197, 155, 39, 0.2);
}

.pkg-selector-card.active {
  transform: translateY(-5px) scale(1.02);
  border: 3.5px solid var(--gv-gold);
  box-shadow: 0 0 20px rgba(197, 155, 39, 0.45), 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pkg-selector-card[data-vip="silver"].active,
.pkg-selector-card[data-vip="mega-silver"].active {
  border-color: #94a3b8;
  box-shadow: 0 0 20px rgba(148, 163, 184, 0.45);
}

.pkg-selector-card[data-vip="gold"].active,
.pkg-selector-card[data-vip="mega-gold"].active {
  border-color: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.55);
}

.pkg-selector-card[data-vip="platinum"].active {
  border-color: var(--gv-purple);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.pkg-selector-card[data-vip="diamond"].active {
  border-color: #0284c7;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.55);
}

.pkg-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pkg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.pkg-selector-card:hover .pkg-card-media img {
  transform: scale(1.06);
}

.pkg-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.pkg-card-details {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pkg-card-icon {
  font-size: 1.7rem;
  margin-bottom: 0.2rem;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.pkg-selector-card[data-vip="gold"] .pkg-card-icon,
.pkg-selector-card[data-vip="mega-gold"] .pkg-card-icon {
  color: var(--gv-gold-light);
}

.pkg-selector-card[data-vip="platinum"] .pkg-card-icon {
  color: #c084fc;
}

.pkg-selector-card[data-vip="diamond"] .pkg-card-icon {
  color: #38bdf8;
}

.pkg-card-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.pkg-card-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
}

.mega-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gv-gold-gradient);
  color: #0c101a;
  font-weight: 900;
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  z-index: 2;
}

html[lang="en"] .mega-badge {
  right: auto;
  left: 8px;
}

.active-check-circle {
  display: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--gv-purple);
  font-size: 0.85rem;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.pkg-selector-card.active .active-check-circle {
  display: flex;
}

/* VIP SHOWCASE PANEL (LIGHT THEME - TEXT ONLY WITHOUT SCREENSHOT) */
.vip-showcase-panel {
  background: #ffffff;
  border: 2px solid #e8dfd0;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 40px rgba(126, 25, 44, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 760px;
  margin: 0 auto;
}

.showcase-specs-col {
  width: 100%;
  text-align: right;
}

html[lang="en"] .showcase-specs-col {
  text-align: left;
}

.showcase-title-ar {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--gv-maroon);
  margin-bottom: 0.2rem;
}

.showcase-title-en {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #64748b;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.showcase-price-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.main-price-val {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--gv-maroon);
  line-height: 1;
}

.price-curr {
  font-size: 1.3rem;
  color: var(--gv-gold-dark);
  font-weight: 800;
  margin-right: 0.4rem;
}

html[lang="en"] .price-curr {
  margin-right: 0;
  margin-left: 0.4rem;
}

.prebooking-tag {
  background: #fdfbf7;
  border: 1px solid #e2dfd7;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  color: #475569;
}

.prebooking-tag strong {
  color: var(--gv-maroon);
  font-weight: 900;
  margin-right: 0.3rem;
}

.diamond-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
  padding: 0;
}

.diamond-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed #e8dfd0;
}

.diamond-bullet {
  color: var(--gv-gold);
  font-size: 1.1rem;
}

.showcase-actions {
  margin-top: 1rem;
}

.showcase-actions .btn-booking {
  width: 100%;
  max-width: 440px;
  padding: 1.1rem 2rem;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  text-align: center;
  box-shadow: 0 8px 25px rgba(126, 25, 44, 0.25);
}


/* SECTION 2: STREAMLINED BOOKING FORM */
.booking-form-section {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-card-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.4rem;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.06);
}

.booking-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gv-maroon-dark);
  margin-bottom: 0.4rem;
}

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

.form-row-package {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.form-row-package label {
  font-weight: 700;
  color: #6b21a8;
  font-size: 0.92rem;
}

.chosen-package-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gv-purple);
}

.chosen-price {
  font-size: 0.88rem;
  color: #7e22ce;
  font-weight: 600;
}

.form-fields-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.custom-input-box {
  position: relative;
}

.custom-input-box input,
.custom-input-box select {
  width: 100%;
  height: 52px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 0 3.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition);
  text-align: center;
}

.custom-input-box input::placeholder {
  text-align: center;
  direction: ltr;
  unicode-bidi: plaintext;
}

.custom-input-box input:focus,
.custom-input-box select:focus {
  outline: none;
  border-color: var(--gv-purple);
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(124, 58, 237, 0.12);
}

.custom-input-box .input-icon {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.15rem;
  pointer-events: none;
}

.select-box select {
  appearance: none;
  font-weight: 700;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.85rem;
  pointer-events: none;
}

/* TOTAL SUMMARY PANEL */
.calc-summary-panel {
  background: #f3ebfc;
  border: 1px solid #ebd8fc;
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.calc-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calc-ticket-icon {
  font-size: 1.8rem;
  color: var(--gv-purple);
}

.calc-labels {
  display: flex;
  flex-direction: column;
}

.calc-main-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #1e1b4b;
}

.calc-sub-note {
  font-size: 0.75rem;
  color: #64748b;
}

.calc-amount-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1e1b4b;
}

/* TRUST GUARANTEE ROW */
.trust-guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item i {
  color: #06b6d4;
  font-size: 0.95rem;
}

.trust-divider {
  color: #cbd5e1;
}

/* SECTION 3: GENERAL TICKETS */
.general-tickets-section {
  background: #f8fafc;
}

.general-tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.gen-ticket-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.gen-ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(126, 25, 44, 0.3);
}

.gen-ticket-card.popular {
  border: 2px solid var(--gv-gold);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gv-gold-gradient);
  color: #0c101a;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
}

html[lang="en"] .popular-ribbon {
  right: auto;
  left: 20px;
}

.gen-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gv-maroon);
  background: rgba(126, 25, 44, 0.08);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.gen-tag.gold {
  color: var(--gv-gold-dark);
  background: rgba(197, 155, 39, 0.15);
}

.gen-ticket-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gv-maroon-dark);
  margin-bottom: 0.5rem;
}

.gen-ticket-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.gen-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gv-maroon-dark);
  margin-bottom: 1.2rem;
}

.gen-price small {
  font-size: 1rem;
  color: var(--gv-maroon);
}

/* SECTION 4: VISITOR ESSENTIALS */
.info-section {
  background: #ffffff;
  padding: 3.5rem 0;
}

.info-card-box {
  background: linear-gradient(135deg, #fdfbf7 0%, #ffffff 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
  color: var(--gv-maroon);
}

.info-header i {
  font-size: 1.6rem;
}

.info-header h3 {
  font-size: 1.3rem;
  font-weight: 900;
}

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

.info-col strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.info-col p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  background: #0a0c14;
  color: #94a3b8;
  border-top: 2px solid rgba(212, 175, 55, 0.25);
  padding: 5rem 0 0;
}

.footer-main-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col .footer-brand-text {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand-text .gold-icon {
  color: var(--gv-gold);
}

.footer-brand-name {
  background: linear-gradient(135deg, #ffffff 40%, var(--gv-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline-txt {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.footer-about-col-txt {
  font-size: 0.875rem;
  line-height: 1.85;
  color: #94a3b8;
  margin-bottom: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: var(--gv-gold);
  color: #fff;
  border-color: var(--gv-gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gv-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  display: inline-block;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-list li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer-links-list li a i {
  font-size: 0.7rem;
  color: var(--gv-gold);
}

.footer-links-list li a:hover {
  color: #fff;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--gv-gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* WhatsApp icon color in contact list */
.footer-contact-list li .fa-whatsapp {
  color: #4ade80 !important;
  font-size: 1rem !important;
}

.footer-bottom-bar {
  margin-top: 3rem;
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.footer-bottom-bar p {
  font-size: 0.8rem;
  color: #64748b;
}

/* DIGITAL TICKET MODAL */
.ticket-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.ticket-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.ticket-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2.2rem 2rem;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  animation: modalPop 0.3s ease;
}

@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #64748b;
  cursor: pointer;
}

html[lang="en"] .modal-close-btn {
  left: auto;
  right: 1rem;
}

.modal-success-badge {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 0.6rem;
}

.modal-heading {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gv-maroon-dark);
  margin-bottom: 0.3rem;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.digital-pass-card {
  background: #fdfbf7;
  border: 2px dashed var(--gv-maroon);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: right;
  margin-bottom: 1.2rem;
}

html[lang="en"] .digital-pass-card {
  text-align: left;
}

.pass-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1e9dc;
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
}

.pass-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gv-maroon-dark);
}

.pass-brand-badge .gold-icon {
  color: var(--gv-gold);
}

.pass-status {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.pass-body {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.pass-qr {
  font-size: 4rem;
  color: var(--gv-maroon);
}

.pass-data p {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.highlight-price {
  color: var(--gv-purple);
  font-weight: 900;
  font-size: 1.05rem;
}

.modal-notice-box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #065f46;
  text-align: right;
}

.modal-footer-btns {
  display: flex;
  gap: 0.8rem;
}

/* HAMBURGER BUTTON (3 BARS - ثلاث شرط) */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 36px;
  z-index: 1001;
}

.hamburger-btn .bar {
  display: block;
  width: 100%;
  height: 3.5px;
  background-color: var(--gv-maroon);
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.hamburger-btn.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE NAV DRAWER */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e8dfd0;
  border-bottom: 3px solid var(--gv-maroon);
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: block;
  animation: slideDown 0.3s ease-out forwards;
}

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

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  padding: 0;
}

.mobile-nav-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #1e293b;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all var(--transition);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: #fdf2f4;
  color: var(--gv-maroon);
}

.mobile-nav-item.highlight-vip {
  color: var(--gv-maroon);
  font-weight: 800;
  background: #fdf8eb;
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-switch-btn {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition);
}

.lang-switch-btn:hover {
  background: #ffffff;
  border-color: var(--gv-maroon);
  color: var(--gv-maroon);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .packages-carousel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-announcement {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .nav-wrapper {
    height: 70px;
    padding: 0 0.8rem;
  }
  .nav-start-mobile {
    display: flex;
    align-items: center;
    z-index: 15;
  }
  .hamburger-btn {
    display: flex;
  }
  .brand-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .brand-logo-img {
    height: 52px;
  }
  .header-actions {
    display: flex;
    align-items: center;
    z-index: 15;
  }
  .header-actions .nav-cta {
    display: none;
  }
  .hero-banner-full {
    margin-bottom: 1.8rem;
  }
  .hero-banner-full .hero-banner-img {
    max-height: 480px;
    min-height: 180px;
  }
  .mobile-swipe-hint {
    display: flex;
  }
  
  /* HORIZONTAL SCROLL / SWIPE FOR 6 VIP PACKAGES ON MOBILE (اسحب يمين وشمال) */
  .packages-carousel-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.85rem;
    padding: 0.4rem 0.5rem 1.4rem;
    margin-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gv-gold) #f1f5f9;
  }

  .packages-carousel-grid::-webkit-scrollbar {
    height: 6px;
  }

  .packages-carousel-grid::-webkit-scrollbar-thumb {
    background: var(--gv-gold);
    border-radius: 6px;
  }

  .pkg-selector-card {
    flex: 0 0 155px;
    min-width: 155px;
    height: 205px;
    scroll-snap-align: start;
  }

  .vip-showcase-panel {
    padding: 2rem 1.4rem;
  }
  
  .showcase-title-ar {
    font-size: 1.7rem;
  }
  
  .main-price-val {
    font-size: 2.6rem;
  }
  
  .general-tickets-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-card-wrapper {
    padding: 1.8rem 1.2rem;
  }
  
  .calc-summary-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem 3rem;
  }

  .footer-bottom-bar {
    margin-top: 0;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
