/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans+Arabic:wght@400;500;600;700&display=swap');
:root {
  /* Brand Colors */
  --clr-midnight: #0A1128;
  --clr-midnight-light: #1C2541;
  --clr-gold: #C5A028;
  --clr-gold-light: #E5C158;
  --clr-gold-dark: #A38018;
  --clr-success: #059669;
  --clr-white: #FFFFFF;
  --clr-offwhite: #FAF9F6;
  --clr-offwhite-dark: #F3F1EB;
  --clr-text-dark: #1E293B;
  --clr-text-muted: #64748B;
  --clr-border: #E2E8F0;

  /* Aliases for backwards compatibility */
  --clr-primary: var(--clr-midnight);
  --clr-primary-light: var(--clr-midnight-light);
  --clr-accent: var(--clr-gold);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Noto Sans Arabic', sans-serif;
  --font-serif: 'Inter', 'Noto Sans Arabic', sans-serif;
  --font-sans: 'Inter', 'Noto Sans Arabic', sans-serif;

  /* Spacing & Borders */
  --radius-standard: 8px; /* Consistent 8px rounded corners */
  --transition-standard: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-subtle: 0 4px 20px rgba(10, 17, 40, 0.04);
  --shadow-hover: 0 10px 30px rgba(10, 17, 40, 0.08);
}

/* --------------------------------------------------------------------------
   2. GLOBAL BODY & RESET
   -------------------------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  background-color: var(--clr-offwhite);
  color: var(--clr-text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-midnight);
  letter-spacing: -0.02em;
}

.text-sans {
  font-family: var(--font-sans) !important;
}

.text-display {
  font-family: var(--font-display) !important;
}

/* --------------------------------------------------------------------------
   3. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar-custom {
  background: var(--clr-white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid var(--clr-border);
}
.navbar-custom .nav-link {
  font-family: var(--font-display);
  color: var(--clr-midnight);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px !important;
  transition: var(--transition-standard);
  white-space: nowrap !important;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--clr-gold) !important;
}

/* Language Switcher */
.lang-switcher .dropdown-toggle {
  background: var(--clr-offwhite) !important;
  border: 1px solid var(--clr-border) !important;
  color: var(--clr-midnight) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  border-radius: var(--radius-standard) !important;
}

/* Auth Buttons */
.btn-login-ghost {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--clr-midnight) !important;
  border: 1px solid var(--clr-midnight) !important;
  background: transparent;
  padding: 8px 20px !important;
  border-radius: var(--radius-standard) !important;
  transition: var(--transition-standard);
}

.btn-login-ghost:hover {
  background: var(--clr-midnight) !important;
  color: var(--clr-white) !important;
}

.btn-register-gold {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--clr-midnight) !important;
  background: var(--clr-gold) !important;
  border: 1px solid var(--clr-gold) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-standard) !important;
  transition: var(--transition-standard);
}

.btn-register-gold:hover {
  background: var(--clr-gold-dark) !important;
  border-color: var(--clr-gold-dark) !important;
  color: var(--clr-white) !important;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-premium {
  background: linear-gradient(rgba(10, 17, 40, 0.75), rgba(10, 17, 40, 0.85)), 
              url('https://images.unsplash.com/photo-1565552645632-d725f8bfc19a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--clr-white);
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
}

.hero-premium h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.hero-premium p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   5. STANDARD BUTTONS
   -------------------------------------------------------------------------- */
.btn-gold {
  font-family: var(--font-display);
  background: var(--clr-gold);
  color: var(--clr-midnight) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-standard);
  transition: var(--transition-standard);
  box-shadow: 0 4px 10px rgba(197, 160, 40, 0.2);
}

.btn-gold:hover {
  background: var(--clr-gold-dark);
  color: var(--clr-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 160, 40, 0.3);
}

.btn-outline-white {
  font-family: var(--font-display);
  background: transparent;
  color: var(--clr-white) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border: 2px solid var(--clr-white);
  padding: 12px 28px;
  border-radius: var(--radius-standard);
  transition: var(--transition-standard);
}

.btn-outline-white:hover {
  background: var(--clr-white);
  color: var(--clr-midnight) !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. CARDS & PRODUCT GRIDS
   -------------------------------------------------------------------------- */
.section-title-container {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ornamental-line {
  width: 80px;
  height: 2px;
  background-color: var(--clr-gold);
  margin: 15px auto 0;
}

/* Luxury Category Cards */
.travel-mode-card {
  background: var(--clr-white);
  border-radius: var(--radius-standard);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: var(--transition-standard);
  box-shadow: var(--shadow-subtle);
}

.travel-mode-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--clr-gold);
}

.travel-mode-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.travel-mode-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-mode-card:hover .travel-mode-img {
  transform: scale(1.04);
}

.travel-mode-body {
  padding: 30px;
}

.travel-mode-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.travel-mode-body p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}

.btn-circle-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-offwhite);
  border: 1px solid var(--clr-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-midnight);
  transition: var(--transition-standard);
}

.travel-mode-card:hover .btn-circle-arrow {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

/* Product Cards Overhaul */
.product-card {
  background: var(--clr-white);
  border-radius: var(--radius-standard);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: var(--transition-standard);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--clr-gold);
}
.product-img-wrapper {
  height: 175px;
  overflow: hidden;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--clr-midnight);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 30px;
}

.product-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-meta-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.product-specs {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
  border-top: 1px solid var(--clr-border);
  padding-top: 10px;
}

.product-spec-item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.product-spec-item i {
  color: var(--clr-gold);
  font-size: 0.9rem;
  margin-right: 8px;
  width: 14px;
  text-align: center;
}

.product-footer {
  margin-top: auto;
  border-top: 1px solid var(--clr-border);
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.product-price-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-midnight);
  line-height: 1.1;
}.product-price-type {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   7. FILTER PILLS
   -------------------------------------------------------------------------- */
.filter-pills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--clr-midnight);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 10px 24px;
  border-radius: 30px;
  transition: var(--transition-standard);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  text-decoration: none !important;
}

.filter-pill:hover {
  border-color: var(--clr-gold);
  background: var(--clr-offwhite-dark);
}

.filter-pill.active {
  background: var(--clr-gold) !important;
  border-color: var(--clr-gold) !important;
  color: var(--clr-midnight) !important;
  box-shadow: 0 4px 12px rgba(197, 160, 40, 0.2);
}

@media (max-width: 768px) {
  .filter-pills-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 30px !important;
  }
  .filter-pill {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 8px !important;
    font-size: 0.72rem !important;
    border-radius: 8px !important;
    width: 100% !important;
    white-space: normal !important;
  }
}

/* --------------------------------------------------------------------------
   8. COUNTER SECTION (LUXURY)
   -------------------------------------------------------------------------- */
.counter-card {
  background: var(--clr-white);
  border-radius: var(--radius-standard);
  border: 1px solid var(--clr-border);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-standard);
  box-shadow: var(--shadow-subtle);
}

.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.counter-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-standard);
  background: rgba(197, 160, 40, 0.1);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.counter-card-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-midnight);
  margin-bottom: 6px;
}

.counter-card-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--clr-text-muted);
}

@media (max-width: 576px) {
  .counter-card {
    padding: 20px 10px;
  }
  .counter-card-number {
    font-size: 1.5rem;
  }
  .counter-card-label {
    font-size: 0.8rem;
  }
  .counter-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin: 0 auto 10px;
  }
}

/* --------------------------------------------------------------------------
   9. FOOTER SYSTEM
   -------------------------------------------------------------------------- */
footer {
  background-color: var(--clr-midnight);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  border-top: 4px solid var(--clr-gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

footer h5, footer h6 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-white);
  margin-bottom: 24px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-standard);
  text-decoration: none !important;
}

footer a:hover {
  color: var(--clr-gold);
  padding-left: 4px;
  text-decoration: none !important;
}

footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-standard);
  background: rgba(255,255,255,0.05);
  color: var(--clr-white);
  margin-right: 8px;
  transition: var(--transition-standard);
}

footer .social-icons a:hover {
  background: var(--clr-gold);
  color: var(--clr-midnight);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   10. PAGINATION
   -------------------------------------------------------------------------- */
.pagination-custom .page-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--clr-midnight);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 10px 18px;
  margin: 0 4px;
  border-radius: var(--radius-standard) !important;
  transition: var(--transition-standard);
}

.pagination-custom .page-item.active .page-link {
  background: var(--clr-gold) !important;
  border-color: var(--clr-gold) !important;
  color: var(--clr-midnight) !important;
}
.pagination-custom .page-link:hover {
  background: var(--clr-offwhite-dark);
  border-color: var(--clr-gold);
}

/* Hide Google Translate Toolbar & Branding */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner {
  display: none !important;
  visibility: hidden !important;
}
body {
  top: 0px !important;
}
.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget img,
#goog-gt-tt,
.skiptranslate iframe {
  display: none !important;
  visibility: hidden !important;
}
.goog-te-gadget {
  color: transparent !important;
  font-size: 0px !important;
}
.goog-te-combo {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* --------------------------------------------------------------------------
   11. CUSTOM BADGE SYSTEM
   -------------------------------------------------------------------------- */
.badge-green {
  background-color: #059669 !important;
  color: #ffffff !important;
  font-weight: 600;
}
.badge-gold {
  background-color: #C5A028 !important;
  color: #ffffff !important;
  font-weight: 600;
}
.badge-pending {
  background-color: #d97706 !important;
  color: #ffffff !important;
  font-weight: 600;
}
.badge-confirmed {
  background-color: #059669 !important;
  color: #ffffff !important;
  font-weight: 600;
}
.badge-boarded {
  background-color: #2563eb !important;
  color: #ffffff !important;
  font-weight: 600;
}
.badge-completed {
  background-color: #475569 !important;
  color: #ffffff !important;
  font-weight: 600;
}
.badge-cancelled {
  background-color: #dc2626 !important;
  color: #ffffff !important;
  font-weight: 600;
}

