/* ==========================================================================
   R ROYAL CASINA - LUXURY TRAVEL DESIGN SYSTEM
   Exact Match to Reference Design (Deep Plum #1e0828 & Golden Peach #e5a65d)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Royal Plum & Golden Palette */
  --royal-dark: #190522;         /* Deepest Plum */
  --royal-plum: #230a30;         /* Primary Brand Plum */
  --royal-card: #2c0e3a;         /* Widget & Card Plum */
  --royal-input: #1a0524;        /* Dark input field */
  --royal-border: #441857;       /* Plum Border */
  
  --gold-primary: #e5a65d;       /* Golden Peach Accent */
  --gold-hover: #f3b672;         /* Lighter Gold */
  --gold-subtle: #fbf0e4;        /* Warm Off-White */
  
  --bg-white: #ffffff;
  --bg-light: #fcfbf9;
  
  --text-dark: #1e1e24;
  --text-muted: #667085;
  --text-light: #98a2b3;
  --text-white: #ffffff;
  
  --border-light: #eaecf0;
  --shadow-card: 0 4px 20px -2px rgba(25, 5, 34, 0.08);
  --shadow-hover: 0 16px 32px -4px rgba(25, 5, 34, 0.16);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 14.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* ---------------- Exact Header (Dark Plum Bar) ---------------- */
.royal-header {
  background-color: var(--royal-dark);
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(229, 166, 93, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

.royal-header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.royal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.royal-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  transition: var(--transition);
}

.royal-logo:hover img {
  transform: scale(1.04);
}

/* Center Navigation Items */
.royal-nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.royal-nav-menu li a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.royal-nav-menu li a:hover,
.royal-nav-menu li a.active {
  color: var(--gold-primary);
}

/* ---------------- Header Dropdown (More Menu) ---------------- */
.royal-nav-menu .dropdown {
  position: relative;
}

.royal-nav-menu .dropdown-toggle::after {
  display: none !important;
}

.royal-nav-menu .dropdown-menu {
  background: #190522 !important;
  border: 1px solid rgba(229, 166, 93, 0.35) !important;
  border-radius: 14px !important;
  padding: 10px !important;
  min-width: 190px !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6) !important;
  margin-top: 12px !important;
  backdrop-filter: blur(14px) !important;
}

.royal-nav-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 9px 16px !important;
  border-radius: 8px !important;
  transition: var(--transition) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 2px !important;
}

.royal-nav-menu .dropdown-item i {
  color: var(--gold-primary);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.royal-nav-menu .dropdown-item:hover,
.royal-nav-menu .dropdown-item:focus {
  background: rgba(229, 166, 93, 0.18) !important;
  color: var(--gold-primary) !important;
  transform: translateX(4px);
}

/* Right Actions (24/7 Support, Currency, Login, Sign Up) */
.royal-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-support-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.2;
}

.header-support-pill i {
  color: var(--gold-primary);
  font-size: 14px;
}

.header-support-pill .support-num {
  font-weight: 700;
  color: #ffffff;
  font-size: 12.5px;
}

.header-currency-select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.header-currency-select option {
  background: var(--royal-dark);
  color: #ffffff;
}

.header-currency-select:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}



.btn-header-login {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.btn-header-login:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-header-signup {
  background: var(--gold-primary);
  color: var(--royal-dark);
  border: 1px solid var(--gold-primary);
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.btn-header-signup:hover {
  background: var(--gold-hover);
  color: var(--royal-dark);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-drawer-login {
  background: rgba(25, 5, 34, 0.08);
  color: var(--royal-dark);
  border: 1px solid rgba(25, 5, 34, 0.15);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.btn-drawer-login:hover {
  background: rgba(25, 5, 34, 0.15);
  color: var(--royal-dark);
}

.btn-drawer-signup {
  background: var(--gold-primary);
  color: var(--royal-dark);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.btn-drawer-signup:hover {
  background: var(--gold-hover);
  color: var(--royal-dark);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

/* ---------------- Hero Section (Swiper Banner Slider) ---------------- */
.royal-hero-section {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.royal-hero-swiper {
  width: 100%;
  position: relative;
}

.hero-slide-item {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0 140px 0;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.royal-hero-next,
.royal-hero-prev {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(25, 5, 34, 0.7);
  border: 1.5px solid rgba(229, 166, 93, 0.5);
  color: var(--gold-primary);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  z-index: 20;
}

.royal-hero-next::after,
.royal-hero-prev::after {
  font-size: 16px;
  font-weight: 800;
}

.royal-hero-next:hover,
.royal-hero-prev:hover {
  background: var(--gold-primary);
  color: var(--royal-dark);
  border-color: var(--gold-primary);
  transform: scale(1.1);
}

.royal-hero-pagination {
  bottom: 100px !important;
  z-index: 20;
}

.royal-hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: var(--transition);
  margin: 0 5px !important;
}

.royal-hero-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 6px;
  background: var(--gold-primary);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 5, 34, 0.7) 0%, rgba(25, 5, 34, 0.35) 50%, rgba(25, 5, 34, 0.88) 100%);
}

.royal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-bottom: 40px;
}

.hero-gold-tag {
  color: var(--gold-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.hero-headline {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 58px;
  }
}

.hero-subhead {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.trust-badge-item i {
  color: var(--gold-primary);
  font-size: 18px;
}

/* ---------------- Floating Booking Engine Box ---------------- */
.booking-engine-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -85px;
  padding: 0 15px;
}

.booking-engine-card {
  background: var(--royal-card);
  border: 1px solid var(--royal-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  padding: 24px;
  color: #ffffff;
}

/* Service Tabs */
.booking-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 16px;
  margin-bottom: 20px;
  overflow-x: auto;
}

.booking-tab-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.booking-tab-btn.active,
.booking-tab-btn:hover {
  background: rgba(229, 166, 93, 0.15);
  color: var(--gold-primary);
}

.booking-trip-types {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.booking-trip-types label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.booking-trip-types input[type="radio"] {
  accent-color: var(--gold-primary);
}

/* Search Fields Grid */
.booking-fields-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
}

@media (min-width: 768px) {
  .booking-fields-row {
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1.2fr auto;
  }
}

.booking-field-box {
  background: var(--royal-input);
  border: 1px solid var(--royal-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.booking-field-box .field-label {
  font-size: 10.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 2px;
}

.booking-field-box input,
.booking-field-box select {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  outline: none;
  font-family: var(--font-body);
  width: 100%;
}

.booking-field-box select option {
  background: var(--royal-dark);
  color: #ffffff;
}

.btn-search-flights {
  background: var(--gold-primary);
  color: var(--royal-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  height: 100%;
}

.btn-search-flights:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(229, 166, 93, 0.4);
}

/* ---------------- Section Standard Header with Gold Lines ---------------- */
.section-royal {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-royal.bg-subtle {
  background-color: var(--bg-light);
}

.royal-section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
  position: relative;
}

.royal-title-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.royal-title-center::before,
.royal-title-center::after {
  content: '';
  height: 1px;
  width: 60px;
  background: #d4a373;
}

.royal-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .royal-heading {
    font-size: 36px;
  }
}

.btn-view-all-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-view-all-pill:hover {
  border-color: var(--royal-plum);
  color: var(--royal-plum);
  background: var(--bg-light);
}

/* ---------------- Modern Filter Tabs (Royal Style) ---------------- */
.travel-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab-btn {
  background: #ffffff;
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.filter-tab-btn:hover {
  border-color: var(--royal-plum);
  color: var(--royal-plum);
  background: var(--bg-light);
  transform: translateY(-2px);
}

.filter-tab-btn.active {
  background: var(--royal-dark);
  color: var(--gold-primary);
  border-color: var(--royal-dark);
  box-shadow: 0 4px 14px rgba(25, 5, 34, 0.25);
}

/* ---------------- Gallery Photo Card ---------------- */
.gallery-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 290px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  cursor: pointer;
}

.gallery-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(25, 5, 34, 0.85) 100%);
  transition: var(--transition);
}

.gallery-photo-card:hover .gallery-card-overlay {
  background: linear-gradient(180deg, rgba(229, 166, 93, 0.15) 0%, rgba(25, 5, 34, 0.92) 100%);
}

.gallery-card-info {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-photo-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.gallery-photo-tag {
  font-size: 12px;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gallery-zoom-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--royal-card);
  border: 1px solid var(--royal-border);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.gallery-photo-card:hover .gallery-zoom-badge {
  background: var(--gold-primary);
  color: var(--royal-dark);
  transform: scale(1.1);
}

/* ---------------- Top Offers Promo Cards ---------------- */
.offer-promo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.offer-promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.offer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 5, 34, 0.25) 0%, rgba(25, 5, 34, 0.88) 100%);
}

.offer-badge {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  background: var(--gold-primary);
  color: var(--royal-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.offer-content {
  position: relative;
  z-index: 2;
}

.offer-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.offer-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.offer-code {
  font-size: 11.5px;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---------------- Popular Destinations (Portrait Cards with Arrow) ---------------- */
.destination-portrait-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 290px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.destination-portrait-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.destination-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(25, 5, 34, 0.85) 100%);
}

.dest-info-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.dest-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.dest-country {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
}

.dest-circle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--royal-card);
  border: 1px solid var(--royal-border);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
}

.destination-portrait-card:hover .dest-circle-btn {
  background: var(--gold-primary);
  color: var(--royal-dark);
  transform: scale(1.1);
}

/* ---------------- Handpicked Holiday Package Cards ---------------- */
.royal-pkg-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.royal-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(229, 166, 93, 0.4);
}

.pkg-thumb-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.pkg-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.royal-pkg-card:hover .pkg-thumb-wrap img {
  transform: scale(1.08);
}

.pkg-tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-primary);
  color: var(--royal-dark);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.pkg-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.pkg-duration {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pkg-inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dark);
}

.pkg-inclusions-list li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pkg-inclusions-list li i {
  color: var(--gold-primary);
  font-size: 11px;
}

.pkg-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.pkg-price-text {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.btn-view-details {
  background: var(--royal-plum);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
}

.btn-view-details:hover {
  background: var(--royal-dark);
  color: var(--gold-primary);
}

/* ---------------- Brand Feature Ribbon Banner ---------------- */
.royal-ribbon-banner {
  background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal-plum) 60%, var(--royal-card) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #ffffff;
  box-shadow: var(--shadow-card);
  position: relative;
}

.ribbon-left-content {
  padding: 40px 30px;
}

.ribbon-brand-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.ribbon-tagline {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

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

@media (min-width: 768px) {
  .ribbon-features-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ribbon-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.ribbon-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 17px;
}

.ribbon-feat-title {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.ribbon-right-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

/* ---------------- Reviews & Newsletter ---------------- */
.traveler-quote-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.quote-icon {
  font-size: 26px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.quote-text {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 18px;
}

.quote-user {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.user-city {
  font-size: 12px;
  color: var(--text-muted);
}

/* Newsletter Inbox Card */
.inbox-card {
  background: var(--royal-card);
  border: 1px solid var(--royal-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  color: #ffffff;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.inbox-card::after {
  content: '✈';
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  color: rgba(229, 166, 93, 0.2);
}

.inbox-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 10px;
}

.inbox-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.inbox-form-row {
  display: flex;
  gap: 8px;
}

.inbox-form-row input {
  flex-grow: 1;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
}

.inbox-form-row button {
  background: var(--gold-primary);
  color: var(--royal-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  cursor: pointer;
  transition: var(--transition);
}

.inbox-form-row button:hover {
  background: var(--gold-hover);
}

/* ---------------- Exact Dark Plum Footer ---------------- */
.royal-footer {
  background-color: var(--royal-dark);
  border-top: 1px solid rgba(229, 166, 93, 0.15);
  padding: 70px 0 20px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
}

.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-icons a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: var(--transition);
}

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

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: var(--gold-primary);
  transform: translateX(3px);
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  color: #ffffff;
  margin-bottom: 10px;
  transition: var(--transition);
  width: 160px;
}

.app-badge-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-primary);
}

.app-badge-btn i {
  font-size: 22px;
}

.app-badge-btn .badge-sub {
  font-size: 9px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.app-badge-btn .badge-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.royal-footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
}

.payment-gateways-row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
}

.payment-gateways-row span i {
  color: var(--gold-primary);
  margin-right: 4px;
}

/* ---------------- Mobile Menu Drawer & Overlay ---------------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--royal-dark);
  border-left: 1px solid var(--royal-border);
  z-index: 9999;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--gold-primary);
  color: var(--royal-dark);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(229, 166, 93, 0.15);
  color: var(--gold-primary);
}

/* ---------------- Mobile Responsive ---------------- */
@media (min-width: 992px) {
  .mobile-menu-drawer,
  .mobile-menu-overlay,
  .mobile-menu-btn {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .royal-nav-menu,
  .header-support-pill,
  .header-currency-select {
    display: none;
  }

  .royal-header .btn-header-login .btn-header-text,
  .royal-header .btn-header-signup .btn-header-text {
    display: none !important;
  }

  .royal-header .btn-header-login {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    font-size: 15px;
    gap: 0;
  }

  .royal-header .btn-header-signup {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    font-size: 15px;
    gap: 0;
  }

  .royal-header-right {
    gap: 10px;
    display: flex;
    align-items: center;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: 2px;
  }
  .booking-engine-wrapper {
    margin-top: -30px;
  }
  .royal-hero-section {
    padding: 0 !important;
    margin: 0 !important;
  }
  .hero-slide-item {
    padding: 60px 0 100px 0;
    min-height: 500px;
  }
  .hero-headline {
    font-size: 34px;
  }
  .royal-section-title-wrap {
    flex-direction: column;
    gap: 14px;
  }
}

/* ---------------- Floating Action Buttons ---------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

.floating-back-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--royal-dark);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  outline: none;
}

.floating-back-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.floating-back-top:hover {
  background: var(--gold-primary);
  color: var(--royal-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(229, 166, 93, 0.4);
}
