#footer {
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* درجة الغمقان */
    z-index: 1;
}

#footer > * {
    position: relative;
    z-index: 2;
}
.card-img-top.overlay.overlay-show::before {
  opacity: 0.40 !important;
}
.custom-hero-text strong,
.custom-hero-text p,
.custom-hero-text h1 {
  color: #fff !important;
  text-shadow: 0 3px 15px rgba(0,0,0,0.7);
}

.custom-hero-text p {
  color: rgba(255,255,255,0.85) !important;
}
section[data-plugin-parallax] {
  position: relative;
}

section[data-plugin-parallax]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* درجة الغمقان */
  z-index: 1;
}

section[data-plugin-parallax] .container {
  position: relative;
  z-index: 2;
}
section[data-plugin-parallax] a {
  color: #fff !important;
}

section[data-plugin-parallax] a svg {
  fill: #fff !important;
}
section[data-plugin-parallax] a svg {
  fill: #fff !important;
  stroke: #fff !important;
}
.section.section-height-4.bg-dark .text-3-5 {
    color: #fff !important;
}

.section.section-height-4.bg-dark i.custom-bg-color-grey-1 {
    background-color: #fff;
}

.section.section-height-4.bg-dark i.fa-check {
    color: #317475 !important;
}

.section.section-height-4.bg-dark .custom-highlight-text-1 {
    color: #fff !important;
}
.card-img-top .svg-fill-color-primary path {
    fill: #fff !important;
}
.breadcrumb,
.breadcrumb li,
.breadcrumb li a,
.breadcrumb li.active {
    color: #fff !important;
}

.breadcrumb li a {
    opacity: 0.85;
}

.breadcrumb li a:hover {
    opacity: 1;
}
.contact-email {
    font-size: 19px; /* كمبيوتر */
}

@media (max-width: 768px) {
    .contact-email {
        font-size: 15px; /* موبايل */
    }
}
.swiper {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #317475; /* أو لونك */
}
.custom-destinations .card-img-top {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.custom-destinations .card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-info-section a {
  display: block;
  margin: 6px 0;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s;
}

.contact-info-section a:hover {
  color: #0d6efd;
}
.contact-info-section a {
  white-space: nowrap;
}
.lang-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  margin-right: 6px;
  vertical-align: middle;
}

/* ---- */

/* ==========================================
   CSS RESET & VARIABLES
   ========================================== */

#hotel-booking-app *,
#hotel-booking-app *::before,
#hotel-booking-app *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#hotel-booking-app {
  /* Colors */
  --primary-orange: #317475;
  --primary-orange-hover: #2a6363;
  --primary-orange-light: rgba(3, 3, 3, 0.1);
  --dark-brown: #2a6363;
  --dark-brown-gradient: linear-gradient(135deg, #2a6363 0%, #2a6363 100%);
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Font */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ==========================================
   BASE STYLES
   ========================================== */

#hotel-booking-app html {
  font-size: 16px;
  scroll-behavior: smooth;
}

#hotel-booking-app body {
  font-family: var(--font-family);
  background-color: var(--gray-100);
  color: var(--gray-800);
  line-height: 1.5;
  min-height: 100vh;
}

/* ==========================================
   HERO BACKGROUND
   ========================================== */

#hotel-booking-app .hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
  overflow: hidden;
}

#hotel-booking-app .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   MAIN CONTAINER
   ========================================== */

#hotel-booking-app .main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* ==========================================
   NAVIGATION TABS
   ========================================== */

#hotel-booking-app .nav-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
}

#hotel-booking-app .tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-base);
  background: var(--dark-brown-gradient);
  color: var(--white);
  border-radius: 0;
}

#hotel-booking-app .tab-btn:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

#hotel-booking-app .tab-btn:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

#hotel-booking-app .tab-btn.active {
  background: var(--white);
  color: var(--primary-orange);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

#hotel-booking-app .tab-btn:not(.active):hover {
  background: linear-gradient(135deg, #2a6363 0%, #2a6363 100%);
}

#hotel-booking-app .tab-icon {
  width: 20px;
  height: 20px;
}

/* ==========================================
   SEARCH CONTAINER
   ========================================== */

#hotel-booking-app .search-container {
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  position: relative;
}

#hotel-booking-app .search-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 20px;
}

/* ==========================================
   SEARCH FIELDS
   ========================================== */

#hotel-booking-app .search-fields {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.5fr 1.2fr auto;
  gap: 10px;
  align-items: start;
}

#hotel-booking-app .field-group {
  position: relative;
}

#hotel-booking-app .field-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-base);
  min-height: 52px;
}

#hotel-booking-app .field-wrapper:hover {
  border-color: var(--primary-orange);
}

#hotel-booking-app .field-wrapper:focus-within {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px var(--primary-orange-light);
}

#hotel-booking-app .field-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

#hotel-booking-app .field-icon-right {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
  flex-shrink: 0;
  margin-left: auto;
}

#hotel-booking-app .field-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--gray-700);
  background: transparent;
}

#hotel-booking-app .field-input::placeholder {
  color: var(--primary-orange);
}

#hotel-booking-app .field-value {
  flex: 1;
  font-size: 13px;
  color: var(--gray-700);
}

#hotel-booking-app .field-chevron {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  transition: var(--transition-base);
}

#hotel-booking-app .field-wrapper.active .field-chevron {
  transform: rotate(180deg);
}

/* ==========================================
   DATE SECTION
   ========================================== */

#hotel-booking-app .date-wrapper {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-base);
  min-height: 52px;
  gap: 16px;
}

#hotel-booking-app .date-wrapper:hover {
  border-color: var(--primary-orange);
}

#hotel-booking-app .date-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

#hotel-booking-app .date-value {
  font-size: 14px;
  color: var(--gray-700);
  white-space: nowrap;
}

#hotel-booking-app .nights-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

#hotel-booking-app .nights-icon {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
}

#hotel-booking-app .nights-value {
  font-size: 13px;
  color: var(--gray-500);
  white-space: nowrap;
}

/* ==========================================
   DROPDOWN MENUS
   ========================================== */

#hotel-booking-app .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-base);
}

#hotel-booking-app .dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#hotel-booking-app .country-dropdown {
  min-width: 200px;
}

#hotel-booking-app .dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 14px;
}

#hotel-booking-app .dropdown-item:hover {
  background: var(--gray-50);
}

#hotel-booking-app .dropdown-item.selected {
  background: var(--primary-orange-light);
  color: var(--primary-orange);
}

/* ==========================================
   CALENDAR DROPDOWN
   ========================================== */

#hotel-booking-app .calendar-dropdown {
  padding: 20px;
  min-width: 320px;
}

#hotel-booking-app .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

#hotel-booking-app .calendar-month {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
}

#hotel-booking-app .calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

#hotel-booking-app .calendar-nav:hover {
  background: var(--gray-100);
}

#hotel-booking-app .calendar-nav svg {
  width: 16px;
  height: 16px;
  color: var(--gray-600);
}

#hotel-booking-app .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

#hotel-booking-app .calendar-weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 8px 0;
}

#hotel-booking-app .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

#hotel-booking-app .calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition-fast);
}

#hotel-booking-app .calendar-day:hover:not(.disabled):not(.selected):not(.in-range) {
  background: var(--gray-100);
}

#hotel-booking-app .calendar-day.disabled {
  color: var(--gray-300);
  cursor: not-allowed;
}

#hotel-booking-app .calendar-day.today {
  background: var(--gray-200);
  font-weight: 600;
}

#hotel-booking-app .calendar-day.selected {
  background: var(--primary-orange);
  color: var(--white);
  font-weight: 600;
}

#hotel-booking-app .calendar-day.in-range {
  background: var(--primary-orange-light);
  color: var(--primary-orange);
}

#hotel-booking-app .calendar-day.checkout {
  background: var(--primary-orange);
  color: var(--white);
}

#hotel-booking-app .nights-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

#hotel-booking-app .nights-selector label {
  font-size: 14px;
  color: var(--gray-600);
}

/* ==========================================
   GUESTS DROPDOWN
   ========================================== */

#hotel-booking-app .guests-dropdown {
  min-width: 380px;
  max-height: 500px;
  overflow-y: auto;
  right: 0;
  left: auto;
}

#hotel-booking-app .rooms-container {
  padding: 16px;
}

#hotel-booking-app .room-card {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

#hotel-booking-app .room-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#hotel-booking-app .room-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

#hotel-booking-app .room-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
}

#hotel-booking-app .room-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
}

#hotel-booking-app .room-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

#hotel-booking-app .counter-item {
  text-align: center;
}

#hotel-booking-app .counter-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 2px;
}

#hotel-booking-app .counter-sublabel {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

#hotel-booking-app .counter-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#hotel-booking-app .counter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

#hotel-booking-app .counter-btn svg {
  width: 28px;
  height: 28px;
  color: var(--primary-orange);
}

#hotel-booking-app .counter-btn:hover svg {
  color: var(--primary-orange-hover);
}

#hotel-booking-app .counter-btn:disabled svg {
  color: var(--gray-300);
  cursor: not-allowed;
}

#hotel-booking-app .counter-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  min-width: 20px;
  text-align: center;
}

/* Children Ages */
#hotel-booking-app .children-ages {
  margin-top: 16px;
}

#hotel-booking-app .ages-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 12px;
}

#hotel-booking-app .ages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#hotel-booking-app .age-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

#hotel-booking-app .age-counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

#hotel-booking-app .age-counter .counter-btn svg {
  width: 24px;
  height: 24px;
}

#hotel-booking-app .age-counter .counter-value {
  font-size: 14px;
  min-width: 16px;
}

/* Dropdown Actions */
#hotel-booking-app .dropdown-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-top: 1px solid var(--gray-200);
  gap: 12px;
}

#hotel-booking-app .add-room-btn,
#hotel-booking-app .remove-room-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-orange);
  transition: var(--transition-fast);
  border-radius: var(--radius-sm);
}

#hotel-booking-app .add-room-btn:hover,
#hotel-booking-app .remove-room-btn:hover {
  background: var(--primary-orange-light);
}

#hotel-booking-app .add-room-btn svg,
#hotel-booking-app .remove-room-btn svg {
  width: 20px;
  height: 20px;
}

#hotel-booking-app .remove-room-btn {
  color: var(--gray-500);
}

#hotel-booking-app .remove-room-btn:hover {
  background: var(--gray-100);
}

#hotel-booking-app .apply-btn {
  padding: 12px 28px;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
  margin-left: auto;
}

#hotel-booking-app .apply-btn:hover {
  background: var(--primary-orange-hover);
}

/* ==========================================
   SEARCH BUTTON
   ========================================== */

#hotel-booking-app .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-base);
  white-space: nowrap;
  min-height: 52px;
}

#hotel-booking-app .search-btn:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

#hotel-booking-app .search-icon {
  width: 20px;
  height: 20px;
}

/* ==========================================
   ADVANCED OPTIONS
   ========================================== */

#hotel-booking-app .advanced-options {
  margin-top: 16px;
}

#hotel-booking-app .advanced-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-orange);
  transition: var(--transition-fast);
}

#hotel-booking-app .advanced-toggle:hover {
  color: var(--primary-orange-hover);
}

#hotel-booking-app .toggle-chevron {
  width: 16px;
  height: 16px;
  transition: var(--transition-base);
}

#hotel-booking-app .advanced-toggle.active .toggle-chevron {
  transform: rotate(180deg);
}

#hotel-booking-app .advanced-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

#hotel-booking-app .advanced-content.hidden {
  display: none;
}

#hotel-booking-app .advanced-group {
  display: flex;
  align-items: center;
}

/* Star Ratings */
#hotel-booking-app .star-ratings {
  display: flex;
  gap: 8px;
}

#hotel-booking-app .star-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

#hotel-booking-app .star-btn:hover {
  border-color: var(--primary-orange);
}

#hotel-booking-app .star-btn.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
}

#hotel-booking-app .star-btn .star {
  font-size: 12px;
}

/* Markup Field */
#hotel-booking-app .markup-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 14px;
  color: var(--gray-600);
}

#hotel-booking-app .markup-field:hover {
  border-color: var(--primary-orange);
}

#hotel-booking-app .markup-field .field-icon {
  width: 16px;
  height: 16px;
}

#hotel-booking-app .markup-field .field-chevron {
  width: 14px;
  height: 14px;
}

/* Checkbox */
#hotel-booking-app .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-600);
}

#hotel-booking-app .checkbox-wrapper input {
  display: none;
}

#hotel-booking-app .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

#hotel-booking-app .checkbox-wrapper input:checked + .checkmark {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

#hotel-booking-app .checkbox-wrapper input:checked + .checkmark::after {
  content: '✓';
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

/* ==========================================
   RECENT SEARCHES
   ========================================== */

#hotel-booking-app .recent-searches {
  margin-top: 40px;
}

#hotel-booking-app .section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 20px;
}

#hotel-booking-app .searches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#hotel-booking-app .search-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition-base);
}

#hotel-booking-app .search-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#hotel-booking-app .card-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

#hotel-booking-app .card-content {
  flex: 1;
  min-width: 0;
}

#hotel-booking-app .card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#hotel-booking-app .card-details {
  font-size: 12px;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

#hotel-booking-app .hidden {
  display: none !important;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1200px) {
#hotel-booking-app .search-fields {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
#hotel-booking-app  .destination-field {
    grid-column: 1 / 2;
  }
  
#hotel-booking-app  .country-field {
    grid-column: 2 / 3;
  }
  
#hotel-booking-app  .date-field {
    grid-column: 1 / 3;
  }
  
#hotel-booking-app  .guests-field {
    grid-column: 1 / 2;
  }
  
#hotel-booking-app  .search-btn {
    grid-column: 2 / 3;
  }
  
#hotel-booking-app  .searches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
#hotel-booking-app .guests-dropdown {
  position: absolute !important;

  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: auto !important;

  width: 100% !important;
  min-width: 100% !important;

  max-height: 500px;
  overflow-y: auto;

  border-radius: 16px !important;

  background: #fff;

  z-index: 99999 !important;
}
#hotel-booking-app .room-counters {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#hotel-booking-app .counter-item {
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

#hotel-booking-app .search-fields {
  gap: 8px;
}

#hotel-booking-app .field-wrapper,
#hotel-booking-app .date-wrapper {
  padding: 8px 9px;
  min-height: 46px;
}

#hotel-booking-app .custom-icon {
  font-size: 15px;
  width: 16px;
  min-width: 16px;
}

#hotel-booking-app .field-input,
#hotel-booking-app .field-value,
#hotel-booking-app .date-value,
#hotel-booking-app .nights-value {
  font-size: 12px;
}

#hotel-booking-app .counter-group {
  justify-content: space-between;
}

#hotel-booking-app .counter-btn svg {
  width: 24px;
  height: 24px;
}

#hotel-booking-app .counter-value {
  font-size: 15px;
}

#hotel-booking-app .guests-field {
  position: relative;
}
  
#hotel-booking-app  .nav-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
#hotel-booking-app  .tab-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  
#hotel-booking-app  .tab-btn:first-child {
    border-radius: var(--radius-md) 0 0 0;
  }
  
#hotel-booking-app  .tab-btn:last-child {
    border-radius: 0 var(--radius-md) 0 0;
  }
  
#hotel-booking-app  .search-container {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 16px;
  }
  
#hotel-booking-app  .search-fields {
    grid-template-columns: 1fr;
  }
  
#hotel-booking-app  .destination-field,
#hotel-booking-app  .country-field,
#hotel-booking-app  .date-field,
#hotel-booking-app  .guests-field,
#hotel-booking-app  .search-btn {
    grid-column: 1 / -1;
  }
  
#hotel-booking-app  .date-wrapper {
    flex-wrap: wrap;
    gap: 12px;
  }
  
#hotel-booking-app  .nights-item {
    border: none;
    padding: 0;
    width: 100%;
    justify-content: center;
  }
  
  
 #hotel-booking-app .calendar-dropdown {
    min-width: 100%;
    left: 0;
    right: 0;
  }
  
#hotel-booking-app  .room-counters {
    gap: 8px;
  }
  
#hotel-booking-app  .advanced-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
#hotel-booking-app  .star-ratings {
    flex-wrap: wrap;
  }
  
#hotel-booking-app  .searches-grid {
    grid-template-columns: 1fr;
  }
  
#hotel-booking-app  .section-title {
    font-size: 18px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {
 #hotel-booking-app .tab-btn {
    padding: 8px 10px;
    font-size: 11px;
  }
  
#hotel-booking-app  .tab-btn span {
    display: none;
  }
  
 #hotel-booking-app .tab-icon {
    width: 24px;
    height: 24px;
  }
  
 #hotel-booking-app .field-wrapper,
 #hotel-booking-app .date-wrapper {
    padding: 12px;
    min-height: 56px;
  }
  
 #hotel-booking-app .search-btn {
    min-height: 56px;
  }
  
 #hotel-booking-app .dropdown-actions {
    flex-wrap: wrap;
  }
  
 #hotel-booking-app .add-room-btn,
 #hotel-booking-app .remove-room-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* ==========================================
   SCROLLBAR STYLING
   ========================================== */

#hotel-booking-app .guests-dropdown::-webkit-scrollbar {
  width: 6px;
}

#hotel-booking-app .guests-dropdown::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 3px;
}

#hotel-booking-app .guests-dropdown::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

#hotel-booking-app .guests-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}
#hotel-booking-app .dropdown-menu{
  display:block !important;
}

#hotel-booking-app .guests-dropdown{
  width:380px;
}

#hotel-booking-app .calendar-dropdown{
  width:320px;
}

#hotel-booking-app .field-group{
  position:relative;
  overflow:visible !important;
}

#hotel-booking-app .search-container{
  overflow:visible !important;
}

#hotel-booking-app .main-container{
  overflow:visible !important;
}

#hotel-booking-app .custom-icon {
  font-size: 18px;
  line-height: 1;

  width: 20px;
  min-width: 20px;

  text-align: center;

  vertical-align: middle;
}
#hotel-booking-app{
  position: relative;
}


#hotel-booking-app .hero-text{
  text-align: center;

  margin-bottom: 70px;

  padding-top: 20px;

  position: relative;
  z-index: 2;
}

/* ---- */
#hotel-booking-app .hero-title{
  font-family: 'Poppins', sans-serif;

  font-size: 78px;

  font-weight: 700;

  line-height: 1.2;

  color: #fff;

  margin-bottom: 18px;

  text-shadow: 0 3px 18px rgba(0,0,0,.35);
}

#hotel-booking-app .hero-subtitle{
  font-family: 'Poppins', sans-serif;

  font-size: 22px;

  font-weight: 300;

  color: rgba(255,255,255,.92);

  line-height: 1.7;

  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

/* Tablet */
@media (max-width: 992px){

#hotel-booking-app .hero-title{
  font-size: 46px;
}

#hotel-booking-app .hero-subtitle{
  font-size: 18px;
}

}

/* Mobile */
@media (max-width: 768px){

#hotel-booking-app .hero-text{
  margin-bottom: 40px;
}

#hotel-booking-app .hero-title{
  font-size: 32px;

  line-height: 1.3;
}

#hotel-booking-app .hero-subtitle{
  font-size: 15px;

  line-height: 1.8;
}

}

#hotel-booking-app .tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 24px;

  background: var(--dark-brown-gradient);
  color: var(--white);

  text-decoration: none;

  transition: var(--transition-base);
}

/* الصفحة الحالية فقط */
#hotel-booking-app .tab-btn.active {
  background: #fff !important;
  color: var(--primary-orange) !important;
}

/* Hover */
#hotel-booking-app .tab-btn:not(.active):hover {
  background: #fff;
  color: var(--primary-orange);
}

/* ---- */

/* =========================================
   DESKTOP FLOATING MENU
========================================= */

.floating-pages-menu {

    position: fixed;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 6px;
}

/* Desktop Buttons */
.floating-btn {

    width: 42px;

    padding: 14px 6px;

    background: #2d6f73;

    color: #ffffff;

    text-decoration: none !important;

    border-radius: 12px 0 0 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    transition: all 0.3s ease;

    position: relative;

    left: -10px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Active */
.floating-btn.active {

    left: 0;

    background: #ffffff;

    color: #2d6f73;
}

/* Hover */
.floating-btn:hover {

    left: 0;

    background: #ffffff;

    color: #2d6f73;
}

/* =========================================
   MOBILE / TABLET FLOATING MENU
========================================= */

.mobile-floating-menu {
    display: none;
}

/* Mobile + Tablet */
@media screen and (max-width: 1024px) {

    /* Hide Desktop Menu */
    .floating-pages-menu {
        display: none;
    }

    .mobile-floating-menu {

        display: flex;
        flex-direction: column;

        position: fixed;

        left: 0;

        top: 35%;

        z-index: 99999;
    }

    /* =========================================
       TOGGLE BUTTON
    ========================================= */

    .mobile-menu-toggle {

        width: 34px;
        height: 70px;

        border: none;

        border-radius: 0 12px 12px 0;

        background: #2d6f73;

        color: #ffffff;

        cursor: pointer;

        position: relative;

        left: -10px;

        transition:
            left 0.25s ease,
            background-color 0.25s ease,
            color 0.25s ease;

        box-shadow: 0 4px 12px rgba(0,0,0,0.18);

        transform: translateZ(0);

        backface-visibility: hidden;

        -webkit-font-smoothing: antialiased;
    }

    /* Open State */
    .mobile-menu-toggle.active {

        left: 0;

        background: #ffffff !important;

        color: #2d6f73 !important;
    }

    /* Hover */
    .mobile-menu-toggle:hover {

        left: 0;
    }

    /* Arrow */
    #mobileArrow {

        display: inline-block;

        font-size: 16px;
        font-weight: bold;

        transition: transform 0.3s ease;
    }

    /* Rotate Arrow */
    .mobile-menu-toggle.active #mobileArrow {

        transform: rotate(180deg);
    }

    /* =========================================
       MENU ITEMS
    ========================================= */

    .mobile-menu-items {

        display: flex;
        flex-direction: column;

        gap: 6px;

        margin-top: 8px;

        opacity: 0;
        visibility: hidden;

        transform: translateX(-20px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    /* Open Menu */
    .mobile-menu-items.active {

        opacity: 1;
        visibility: visible;

        transform: translateX(0);
    }

    /* =========================================
       LINKS
    ========================================= */

    .mobile-menu-items a {

        width: 42px;

        padding: 14px 6px;

        background: #2d6f73;

        color: #ffffff;

        text-decoration: none !important;

        border-radius: 12px 0 0 12px;

        display: flex;
        align-items: center;
        justify-content: center;

        writing-mode: vertical-rl;

        transform:
            rotate(180deg)
            translateZ(0);

        font-size: 11px;
        font-weight: 700;

        position: relative;

        left: -10px;

        transition:
            left 0.25s ease,
            background-color 0.25s ease,
            color 0.25s ease;

        box-shadow: 0 4px 10px rgba(0,0,0,0.12);

        backface-visibility: hidden;

        -webkit-font-smoothing: antialiased;
    }

    /* Active Link */
    .mobile-menu-items a.active {

        left: 0;

        background: #ffffff;

        color: #2d6f73;
    }

    /* Hover Effect */
    .mobile-menu-items a:hover {

        left: 0;

        background: #ffffff;

        color: #2d6f73;
    }

}

.features-container{

    margin-top: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 60px;

    flex-wrap: wrap;
}

.feature-item{

    display: flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 15px;

    font-weight: 600;
}

.feature-item i{

    font-size: 16px;
}

/* Mobile */
@media (max-width: 768px){

    .features-container{

        gap: 14px;

        flex-direction: column;
    }

    .feature-item{

        font-size: 14px;
    }

}

.fixed-offer-bar{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #317475;
    color: #fff;
    z-index: 9999;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.offer-track{
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: moveOffer 20s linear infinite;
    font-size: 15px;
    font-weight: 600;
}

@keyframes moveOffer{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

.offer-track a{
    color: #fff;
    text-decoration: none;
    margin-right: 60px;
}

.offer-track a:hover{
    color: #ffc107;
}
.offer-track:hover{
    animation-play-state: paused;
}

#scrollTop,
.scroll-to-top{
    bottom: 40px !important;
}

body{
    padding-bottom: 40px;
}

<!---->

#package-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 #package-page {
    --primary-teal: #317475;
    --light-bg: #f5f7f8;
    --white: #ffffff;
    --text-dark: #07161a;
    --text-light: #4a6b6e;
    --gray-light: #e8eef1;
    --gray-lighter: #f0f4f7;
}

#package-page {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

#package-page {
    scroll-behavior: smooth;
}

#package-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




/* ========================================
   BUTTONS
   ======================================== */

#package-page .btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#package-page .btn-primary {
    background: var(--primary-teal);
    color: white;
}

#package-page .btn-primary:hover {
    background: #285a5c;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(49, 116, 117, 0.3);
}

#package-page .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

#package-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

#package-page .btn-explore {
    background: var(--primary-teal);
    color: white;
    padding: 10px 20px;
    font-size: 12px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

#package-page .btn-explore:hover {
    background: #285a5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 116, 117, 0.3);
}

/* ========================================
   FILTER SECTION
   ======================================== */

#package-page .filter-section {
    background: var(--white);
    padding: 40px 0;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 20;
}

#package-page .filter-bar {
    background: rgba(49, 116, 117, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(49, 116, 117, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#package-page .filter-item {
    display: flex;
    flex-direction: column;
}

#package-page .filter-item label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

#package-page .filter-item select {
    padding: 12px 14px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

#package-page .filter-item select:hover,
#package-page .filter-item select:focus {
    border-color: var(--primary-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 116, 117, 0.1);
}

#package-page #no-results {
    display: none;
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 30px;
}

#package-page #no-results h3 {
    color: #317475;
    margin-bottom: 10px;
}
/* ========================================
   SECTION TITLES
   ======================================== */

#package-page .section-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

/* ========================================
   FEATURED PACKAGES SECTION
   ======================================== */

#package-page .packages-section {
    padding: 80px 0;
    background: #ffffff;
}

#package-page .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   PACKAGE CARD
   ======================================== */

#package-page .package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

#package-page .package-card:nth-child(1) { animation-delay: 0.1s; }
#package-page .package-card:nth-child(2) { animation-delay: 0.2s; }
#package-page .package-card:nth-child(3) { animation-delay: 0.3s; }
#package-page .package-card:nth-child(4) { animation-delay: 0.4s; }

#package-page .package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(49, 116, 117, 0.2);
}

#package-page .package-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

#package-page .package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 116, 117, 0.2) 0%, rgba(7, 22, 26, 0.1) 100%);
    transition: background 0.5s ease;
}

#package-page .package-card:hover .package-overlay {
    background: linear-gradient(135deg, rgba(49, 116, 117, 0.4) 0%, rgba(7, 22, 26, 0.2) 100%);
}

#package-page .package-card:hover .package-image {
    transform: scale(1.08);
}

#package-page .package-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#package-page .package-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

#package-page .package-season {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

#package-page .package-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

#package-page .package-info {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#package-page .package-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

#package-page .package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

#package-page .price-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

#package-page .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-teal);
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */

#package-page .destinations-section {
    padding: 80px 0;
    background: var(--white);
}

#package-page .destinations-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

#package-page .destination-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

#package-page .destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#package-page .destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 116, 117, 0.3) 0%, rgba(7, 22, 26, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: white;
    transition: all 0.4s ease;
}

#package-page .destination-card:hover .destination-image {
    transform: scale(1.1);
}

#package-page .destination-card:hover .destination-overlay {
    background: linear-gradient(135deg, rgba(49, 116, 117, 0.5) 0%, rgba(7, 22, 26, 0.6) 100%);
}

#package-page .destination-overlay h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

#package-page .destination-overlay p {
    font-size: 13px;
    opacity: 0.9;
}


/* ========================================
   FINAL CTA SECTION
   ======================================== */

#package-page .final-cta {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#package-page .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#package-page .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 116, 117, 0.4) 0%, rgba(7, 22, 26, 0.3) 100%);
}

#package-page .cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 600px;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

#package-page .cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

#package-page .cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

#package-page .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .destinations-strip {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .final-cta {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .navbar-nav {
        gap: 12px;
    }

    .navbar-logo .logo-text {
        font-size: 18px;
    }

    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .package-card {
        margin: 0;
    }

    .final-cta {
        height: 350px;
    }
}

/* ========================================
   ======================================== */

       #vm-package-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       #vm-package-page {
            --primary: #317475;
            --dark-bg: #07161a;
            --white: #317475;
            --text-muted: #6B7280;
            --text-muted: #64748B;
            --glass: rgba(255, 255, 255, 0.1);
            --glass-hover: rgba(255, 255, 255, 0.15);
        }

      #vm-package-page {
            background-color: var(--dark-bg);
            scroll-behavior: smooth;
        }

    #vm-package-page {
            font-family: 'Inter', sans-serif;
            color: var(--text-muted);
            background: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ======== HERO SECTION ======== */
        #vm-package-page .hero {
            position: relative;
            min-height: 700px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 0;
        }

        #vm-package-page .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
            linear-gradient(
                135deg,
                rgba(49,116,117,.03) 0%,
                rgba(49,116,117,.08) 100%
            );
        }

        #vm-package-page .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: fadeInUp 1s ease-out;
            max-width: 900px;
            padding: 0 20px;
        }

        #vm-package-page .hero-label {
            display: inline-block;
            font-size: 13px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 4px;
            margin-bottom: 30px;
            font-weight: 600;
            animation: fadeIn 1s ease-out 0.2s both;
        }

        #vm-package-page .hero h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(48px, 8vw, 92px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeIn 1s ease-out 0.4s both;
            letter-spacing: -1px;
        }

        #vm-package-page .hero-subtitle {
            font-size: clamp(18px, 3vw, 24px);
            color: var(--text-muted);
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 1s ease-out 0.6s both;
            font-weight: 400;
        }

        #vm-package-page .hero-info {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out 0.8s both;
        }

        #vm-package-page .hero-info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
        }

        #vm-package-page .hero-info-dot {
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        #vm-package-page .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out 1s both;
        }

        #vm-package-page .cta-button {
            padding: 16px 40px;
            border: 1.5px solid var(--primary);
            background: var(--primary);
            backdrop-filter: blur(10px);
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        #vm-package-page .cta-button:hover {
            background: #ffffff;
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(49, 116, 117, 0.2);
        }

        #vm-package-page .cta-button.primary {
            padding: 16px 40px;
            border: 1.5px solid var(--primary);
            background: var(--primary);
            backdrop-filter: blur(10px);
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        #vm-package-page .cta-button.primary:hover {
            background: #ffffff;
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(49, 116, 117, 0.2);
        }


@media (max-width:768px){

    #vm-package-page .hero-info{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

}

        /* ======== FLOATING INFO BAR ======== */
        #vm-package-page .floating-bar {
            position: relative;
            z-index: 10;
            transform: translateY(-80px);
            margin-bottom: -60px;
        }

        #vm-package-page .info-card {
            max-width: 1000px;
            margin: 0 auto;
            padding: 30px;
            background: #ffffff;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(49, 116, 117, 0.15);
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
            border-radius: 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
            animation: slideUp 0.8s ease-out 1.2s both;
        }

        #vm-package-page .info-item {
            text-align: center;
        }

        #vm-package-page .info-item-label {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #94A3B8;
            margin-bottom: 8px;
            font-weight: 600;
        }

        #vm-package-page .info-item-value {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        #vm-package-page .info-item-detail {
            font-size: 12px;
            color: var(--text-light);
        }

        /* ======== SECTIONS ======== */
        #vm-package-page section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        #vm-package-page .section-label {
            display: inline-block;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 600;
        }

        #vm-package-page .section-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        #vm-package-page .section-description {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--text-muted);
            max-width: 700px;
            margin-bottom: 60px;
            line-height: 1.7;
        }

        /* ======== STORY SECTION ======== */
        #vm-package-page .story {
            background: linear-gradient(135deg, rgba(49, 116, 117, 0.08) 0%, rgba(49, 116, 117, 0) 100%);
        }

        #vm-package-page .story-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        #vm-package-page .story-text {
            font-size: clamp(18px, 3vw, 26px);
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        /* ======== TIMELINE SECTION ======== */
        #vm-package-page .timeline-section {
            padding: 100px 20px;
        }

        #vm-package-page .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 0;
        }

        #vm-package-page .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--primary) 0%, rgba(49, 116, 117, 0) 100%);
        }

        #vm-package-page .timeline-item {
            margin-bottom: 80px;
            position: relative;
            animation: fadeInUp 0.8s ease-out;
        }

        #vm-package-page .timeline-item:nth-child(odd) .timeline-card {
            margin-left: 0;
            margin-right: auto;
            width: calc(50% - 30px);
        }

        #vm-package-page .timeline-item:nth-child(even) .timeline-card {
            margin-left: auto;
            margin-right: 0;
            width: calc(50% - 30px);
        }

        #vm-package-page .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: var(--primary);
            border: none;
            border-radius: 50%;
            z-index: 2;
        }

        #vm-package-page .timeline-card {
            background: #EEF5F5;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(49,116,117,.20);
            box-shadow: 0 8px 24px rgba(15,23,42,.05);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        #vm-package-page .timeline-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(49, 116, 117, 0.15);
        }

        #vm-package-page .timeline-day {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        #vm-package-page .timeline-heading {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        #vm-package-page .timeline-text {
            font-size: 14px;
            color: #64748B;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            #vm-package-page .timeline::before {
                left: 20px;
            }

            #vm-package-page .timeline-dot {
                left: 20px;
            }

            #vm-package-page .timeline-item:nth-child(odd) .timeline-card,
            #vm-package-page .timeline-item:nth-child(even) .timeline-card {
                width: calc(100% - 50px);
                margin-left: 50px;
            }
        }

        /* =========================
   Timeline Hover Images
========================= */

#vm-package-page .timeline-item{
    position: relative;
}

#vm-package-page .timeline-hover-image{
    position: absolute;

    width: 380px;
    height: 260px;

    border-radius: 24px;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transition: all .35s ease;

    box-shadow: 0 20px 50px rgba(15,23,42,.15);

    z-index: 100;

    top: 50%;
    transform: translateY(-50%) scale(.95);

    pointer-events: none;
}

#vm-package-page .timeline-hover-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* الكروت اللي على الشمال */
#vm-package-page .timeline-item:nth-child(odd) .timeline-hover-image{
    left: 55%;
}

/* الكروت اللي على اليمين */
#vm-package-page .timeline-item:nth-child(even) .timeline-hover-image{
    right: 55%;
}

/* الصورة تظهر فقط عند الوقوف على الكارت */
#vm-package-page .timeline-card:hover + .timeline-hover-image{
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Desktop Only */

@media (max-width: 1024px) {

    #vm-package-page .timeline-hover-image {
        display: none !important;
    }

}

        /* ======== HIGHLIGHTS SECTION ======== */
        #vm-package-page .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        #vm-package-page .highlight-card {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            animation: fadeInUp 0.8s ease-out;
            border: 1px solid rgba(49,116,117,.12);
            box-shadow: 0 8px 24px rgba(15,23,42,.05);
        }

        #vm-package-page .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
            135deg,
            rgba(49,116,117,.08) 0%,
            rgba(49,116,117,.02) 100%
            );
            z-index: 1;
            transition: opacity 0.4s ease;
        }

        #vm-package-page .highlight-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="g1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%23317475;stop-opacity:0.1" /><stop offset="100%25" style="stop-color:%23317475;stop-opacity:0" /></linearGradient></defs><rect width="400" height="300" fill="url(%23g1)"/></svg>');
            background-size: cover;
            z-index: 2;
        }

        #vm-package-page .highlight-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            z-index: 3;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        #vm-package-page .highlight-card:hover .highlight-content {
            transform: translateY(0);
        }

        #vm-package-page .highlight-content h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        #vm-package-page .highlight-content p {
            font-size: 13px;
            color: #64748B;
            line-height: 1.5;
        }

        /* ======== GALLERY SECTION ======== */
        #vm-package-page .gallery {
            margin-top: 60px;
        }

        #vm-package-page .masonry-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            grid-auto-rows: 250px;
        }

        #vm-package-page .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            background: linear-gradient(135deg,rgba(49,116,117,.10) 0%,rgba(49,116,117,.03) 100% );
            animation: fadeInUp 0.8s ease-out;
        }

        #vm-package-page .gallery-item:nth-child(3n + 2) {
            grid-column: span 2;
        }

        #vm-package-page .gallery-item:nth-child(5n) {
            grid-row: span 2;
        }

        #vm-package-page .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,rgba(49,116,117,.08) 0%,rgba(49,116,117,.02) 100%);
            z-index: 1;
            transition: opacity 0.4s ease;
        }

        #vm-package-page .gallery-item:hover::before {
            opacity: 0;
        }

        #vm-package-page .gallery-item-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        #vm-package-page .gallery-item:hover .gallery-item-content {
            opacity: 1;
        }

        #vm-package-page .gallery-item-content h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
        }

        /* ======== INCLUDED SECTION ======== */
        #vm-package-page .included-section {
            background: #F8FAFA;
        }

        #vm-package-page .excluded-section {
            background: #F8FAFA;
        }

        #vm-package-page .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        #vm-package-page .excluded-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        #vm-package-page .included-card {
            background: #ffffff;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(49,116,117,.12);
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(15,23,42,.05);
            padding: 40px;
            transition: all 0.4s ease;
        }

        #vm-package-page .excluded-card {
            background: #ffffff;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(49,116,117,.12);
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(15,23,42,.05);
            padding: 40px;
            transition: all 0.4s ease;
        }

        #vm-package-page .included-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary);
            transform: translateY(-10px);
        }

        #vm-package-page .excluded-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary);
            transform: translateY(-10px);
        }

        #vm-package-page .included-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        #vm-package-page .excluded-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        #vm-package-page .included-icon {
            width: 32px;
            height: 32px;
            background: rgba(49,116,117,.10);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
        }

        #vm-package-page .excluded-icon {
            width: 32px;
            height: 32px;
            background: rgba(49,116,117,.10);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
        }

        #vm-package-page .included-list {
            list-style: none;
        }

        #vm-package-page .excluded-list {
            list-style: none;
        }

        #vm-package-page .included-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            font-size: 14px;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        #vm-package-page .excluded-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            font-size: 14px;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        #vm-package-page .included-list li:last-child {
            border-bottom: none;
        }

        #vm-package-page .excluded-list li:last-child {
            border-bottom: none;
        }

        #vm-package-page .included-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        #vm-package-page .excluded-list li::before {
            content: '✖';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        /* ======== PRICING SECTION ======== */
        #vm-package-page .pricing-section {
            background: #F8FAFA;
            text-align: center;
        }

        #vm-package-page .pricing-amount {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(48px, 8vw, 92px);
            font-weight: 800;
            color: var(--primary);
            margin: 40px 0;
            letter-spacing: -1px;
        }

        #vm-package-page .pricing-label {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 60px;
        }

        /* ======== CTA SECTION ======== */
        #vm-package-page .cta-section {
            position: relative;
            text-align: center;
            padding: 120px 20px;
            background: #EEF5F5;
        }

        #vm-package-page .cta-section h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        #vm-package-page .cta-section p {
            font-size: 18px;
            color: #64748B;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        #vm-package-page .cta-buttons-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

       

        /* ======== ANIMATIONS ======== */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ======== SCROLL ANIMATIONS ======== */
        #vm-package-page .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        #vm-package-page .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ======== RESPONSIVE ======== */
        @media (max-width: 768px) {
           #vm-package-page section {
                padding: 60px 20px;
            }

            #vm-package-page .hero {
              height: auto;
              min-height: auto;
              padding: 40px 20px;
            }


            #vm-package-page .floating-bar {
                margin: 30px 20px 0;
                transform: translateY(0);
            }

            #vm-package-page .info-card {
                grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
                gap: 15px;
                padding: 20px;
            }

            #vm-package-page .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            #vm-package-page .cta-button {
                width: 100%;
            }

            #vm-package-page .masonry-gallery {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
                grid-auto-rows: 200px;
            }

            #vm-package-page .gallery-item:nth-child(3n + 2),
            #vm-package-page .gallery-item:nth-child(5n) {
                grid-column: span 1;
                grid-row: span 1;
            }

            #vm-package-page .cta-buttons-group {
                flex-direction: column;
            }

            #vm-package-page .cta-button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            #vm-package-page .hero h1 {
                font-size: 36px;
            }

            #vm-package-page .hero-info {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px 15px;
            }



            #vm-package-page .timeline::before {
                left: 15px;
            }

            #vm-package-page .timeline-dot {
                left: 15px;
            }

            #vm-package-page .timeline-item:nth-child(odd) .timeline-card,
            #vm-package-page .timeline-item:nth-child(even) .timeline-card {
                width: calc(100% - 40px);
                margin-left: 40px;
            }

            #vm-package-page .highlights-grid {
                grid-template-columns: 1fr;
            }

            #vm-package-page .info-card {
                grid-template-columns: 1fr;
            }
        }   
        
       @media (max-width: 768px){

    #vm-package-page .hero .timeline-dot,
    #vm-package-page .hero .timeline-hover-image{
        display:none !important;
    }

}