/* ========================================
   GLOBAL VARIABLES & RESET
   ======================================== */
:root {
  --primary-color: #7b4dff;
  --primary-hover: #4f2396;
  --secondary-color: #895ffb;
  --text-dark: #222222;
  --text-medium: #717171;
  --text-light: #b0b0b0;
  --bg-light: #f7f7f7;
  --border-color: #dddddd;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.28);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif !important;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  /*overflow-x: hidden;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale - Fluid */
h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
}
p {
  font-size: clamp(0.875rem, 4vw, 1rem);
}
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h5 { font-size: clamp(1rem, 1.5vw, 1.25rem); }
h6 { font-size: clamp(0.9rem, 1vw, 1rem); }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ========================================
   CONTAINER & GRID SYSTEM
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

@media (min-width: 1280px) {
  .container { padding: 0 2.5rem; }
}

/* ========================================
   NAVIGATION - FULLY RESPONSIVE
   ======================================== */
.navbar-custom {
  background: #ffffff;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar-custom.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

.navbar-brand {
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.navbar-brand span {
  color: var(--text-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  position: relative;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.mobile-menu-toggle span::before { top: -7px; }
.mobile-menu-toggle span::after { top: 7px; }

.mobile-menu-toggle.active span {
  background: transparent;
}

.mobile-menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Navigation Menu */
.navmenu {
  display: none;
  width: 100%;
  order: 3;
}

.navmenu.active {
  display: block;
}

.navmenu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color, var(--text-dark));
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color, var(--primary-color));
  background: var(--bg-light);
}

.navmenu a i {
  font-size: 0.75rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

/* Dropdown */
.navmenu .dropdown ul {
  display: none;
  padding: 0.5rem 0 0.5rem 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-top: 0.25rem;
}

.navmenu .dropdown.active > ul {
  display: block;
}

.navmenu .dropdown ul li {
  min-width: auto;
}

.navmenu .dropdown ul a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }

  .navmenu {
    display: flex !important;
    width: auto;
    order: 0;
  }

  .navmenu ul {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    padding: 1rem 0.75rem;
    white-space: nowrap;
  }

  .navmenu .dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navmenu .dropdown ul a {
    padding: 0.6rem 1rem;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
  }
}

/* Nav Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.control-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: white;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.control-btn:hover {
  border-color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.control-btn i {
  font-size: 0.7rem;
}

@media (max-width: 480px) {
  .control-btn span {
    display: none;
  }

  .control-btn {
    padding: 0.5rem;
  }
}

/* ========================================
   HERO SECTION - RESPONSIVE
   ======================================== */
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero-content {
  text-align: center;
  margin-bottom: 48px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.hero-title .arabic {
  font-family: 'Tajawal', sans-serif;
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 32px;
}

.hero-trust i {
  color: var(--secondary-color);
}
.hero-section {
 padding: 0 0 1rem 0 !important;
  display: flex;
  align-items: center;
}
/* ========================================
   AIRBNB SEARCH - FULLY RESPONSIVE
   ======================================== */
.airbnb-search-wrapper {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}

.airbnb-search-container {
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  height: clamp(60px, 10vw, 72px);
  border: 1px solid #dddddd;
  position: relative;
  transition: box-shadow 0.2s ease;
  width: 100%;
}

.airbnb-search-container:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.airbnb-search-item {
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.2s ease;
  position: relative;
}

.airbnb-search-item:hover {
  background-color: #ebebeb;
}

.airbnb-search-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.airbnb-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.airbnb-input {
  border: none;
  background: transparent;
  font-size: 0.875rem;
  color: var(--text-medium);
  outline: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.airbnb-input::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.airbnb-divider {
  width: 1px;
  height: 32px;
  background: #dddddd;
  flex-shrink: 0;
}

.where-item {
  flex: 1.5;
}

.date-item {
  flex: 1;
}

.who-item {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.5rem;
}

.airbnb-search-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin: 0 0.5rem;
}

.airbnb-search-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

.airbnb-search-btn i {
  font-size: 1rem;
}

.airbnb-search-btn span {
  display: none;
}

.airbnb-search-btn.with-text {
  width: auto;
  padding: 0 1.25rem;
  border-radius: 24px;
  gap: 0.5rem;
}

.airbnb-search-btn.with-text span {
  display: inline;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Guests Dropdown */
.guests-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  width: min(320px, 90vw);
  display: none;
  z-index: 100;
}

.guests-dropdown.active {
  display: block;
}

.guest-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #ebebeb;
}

.guest-type:last-child {
  border-bottom: none;
}

.guest-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.guest-desc {
  font-size: 0.75rem;
  color: var(--text-medium);
  margin-top: 2px;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #b0b0b0;
  background: white;
  color: var(--text-medium);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.counter-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .airbnb-search-container {
    flex-wrap: nowrap;
  }

  .airbnb-search-item {
    padding: 0 1rem;
  }

  .where-item {
    flex: 2;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .airbnb-search-container {
    flex-direction: column;
    height: auto;
    border-radius: 24px;
    padding: 1rem;
    gap: 0.5rem;
  }

  .airbnb-search-item {
    width: 100%;
    height: auto;
    min-height: 56px;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
  }

  .airbnb-divider {
    display: none;
  }

  .who-item {
    flex-direction: row;
    padding-right: 1rem;
  }

  .airbnb-search-btn {
    width: 100%;
    border-radius: 12px;
    margin: 0.5rem 0 0 0;
    height: 48px;
  }

  .airbnb-search-btn.with-text {
    border-radius: 12px;
  }

  .guests-dropdown {
    width: 100%;
    right: 0;
    left: 0;
    position: relative;
    top: 0;
    margin-top: 0.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .airbnb-search-wrapper {
    padding: 0 0.75rem;
  }

  .airbnb-search-item {
    padding: 0.5rem 0.75rem;
    min-height: 48px;
  }

  .airbnb-label {
    font-size: 0.7rem;
  }

  .airbnb-input {
    font-size: 0.8rem;
  }
}

/* ========================================
   SECTIONS - RESPONSIVE
   ======================================== */
.section-padding {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 4rem 0;
  }
}

.section-header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-medium);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.view-all-link {
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: underline;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

/* ========================================
   LISTING CARDS - RESPONSIVE GRID
   ======================================== */
.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .listing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Hotels Grid - Smaller Cards */
.listing-grid.hotels-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .listing-grid.hotels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .listing-grid.hotels-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1280px) {
  .listing-grid.hotels-grid {
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  }
}

.hotels-grid .listing-title {
  font-size: 0.8rem;
}

.hotels-grid .listing-location,
.hotels-grid .listing-dates {
  font-size: 0.75rem;
}

.hotels-grid .price-amount {
  font-size: 0.875rem;
}

.hotels-grid .listing-image-wrapper {
  aspect-ratio: 4 / 3;
}

/* Listing Card Styles */
.listing-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-color: #fff;
  color: initial;
  text-decoration: none;
  transform: scale(1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}



@media (hover: hover) and (pointer: fine) {
  .listing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .listing-card:hover .listing-image {
    transform: scale(1.05);
  }
}

.listing-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px 16px 0 0;
  display: block;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

@media (max-width: 480px) {
  .listing-image-wrapper {
        aspect-ratio: 4 / 3;

  }
}

.listing-image {
  width: 100%;
  height: 100%;
aspect-ratio: 1 / 1;
object-fit: cover; 
  transition: transform 0.3s ease;
  background-color: rgb(243, 243, 243);
}

.listing-card:hover .listing-image {
  transform: scale(1.05);
}

.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  backdrop-filter: blur(4px);
}

.listing-badge.urgent {
  background: #ff385c;
  color: white;
}

.listing-badge.hot {
  background: #ff5a5f;
  color: white;
}

.listing-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .listing-favorite {
    opacity: 0;
  }

  .listing-card:hover .listing-favorite {
    opacity: 1;
  }
}

.listing-favorite:hover {
  transform: scale(1.1);
}

.listing-details {
  padding: 0 0.25rem;
}

.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 4px;
}

.listing-title {
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.listing-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.listing-rating i {
  color: var(--text-dark);
  font-size: 0.75rem;
}

.listing-location {
  color: var(--text-medium);
  font-size: clamp(0.8rem, 1.5vw, 0.9375rem);
  margin-bottom: 0.25rem;
}

.listing-dates {
  color: var(--text-light);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  margin-bottom: 0.5rem;
}

.listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.listing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-dark);
}

.price-unit {
  font-size: 0.875rem;
  color: var(--text-medium);
}

.whatsapp-btn-sm {
  background: #25d366;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.whatsapp-btn-sm:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .whatsapp-btn-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }

  .whatsapp-btn-sm span {
    display: none;
  }
}

/* ========================================
   CAR GRID - RESPONSIVE
   ======================================== */
.car-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .car-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.car-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.car-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ========================================
   PACKAGE CARDS - RESPONSIVE
   ======================================== */
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff5a5f);
}

.package-card:hover {
  border-color: var(--primary-color);
}

.package-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff8e1;
  color: #f9a825;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.package-title {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.package-includes {
  list-style: none;
  margin-bottom: 1.25rem;
}

.package-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.package-includes i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.package-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.package-price {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--primary-color);
}

.package-price span {
  font-size: 0.875rem;
  color: var(--text-medium);
  font-weight: 400;
}

/* ========================================
   TRUST SECTION - RESPONSIVE
   ======================================== */
.trust-section {
  background: var(--bg-light);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .trust-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .trust-section {
    padding: 5rem 0;
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 480px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.trust-item {
  padding: 1.5rem 1rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-sm);
  font-size: 1.5rem;
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .trust-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
}

.trust-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-medium);
  font-weight: 500;
}

/* ========================================
   TESTIMONIALS - RESPONSIVE
   ======================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-stars {
  color: #ffb400;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.testimonial-text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .author-avatar {
    width: 48px;
    height: 48px;
  }
}

.author-info h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-medium);
}

/* ========================================
   CTA SECTION - RESPONSIVE
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff5a5f 100%);
  padding: 3rem 1rem;
  text-align: center;
  color: white;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 5rem 2rem;
  }
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-whatsapp-btn {
  background: white;
  color: #25d366;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.cta-whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  opacity: 0.95;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp,
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

.floating-whatsapp:hover,
.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  background: #128c7e;
}

@media (max-width: 480px) {
  .floating-whatsapp,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 1rem;
    right: 1rem;
  }
}

/* ========================================
   FOOTER - RESPONSIVE
   ======================================== */
.footer-custom {
  background: var(--bg-light);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .footer-custom {
    padding: 4rem 0 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--border-color);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-medium);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ========================================
   SWIPER SLIDER - RESPONSIVE
   ======================================== */
.stays-swiper {
  overflow: hidden;
  padding: 0.5rem 0;
}

.stays-swiper .swiper-wrapper {
  transition-timing-function: ease-out;
}

.stays-swiper .listing-card {
  cursor: pointer;
  height: 100%;
}

.stays-swiper .listing-image-wrapper {
  aspect-ratio: 4 / 3 !important;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.stays-swiper .listing-title {
  font-size: 0.8125rem !important;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stays-swiper .listing-location,
.stays-swiper .listing-dates {
  font-size: 0.75rem !important;
}

.stays-swiper .price-amount {
  font-size: 0.875rem !important;
  font-weight: 600;
}

.stays-swiper .price-unit {
  font-size: 0.75rem;
  color: var(--text-medium);
}

.swiper-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  inset: auto;
  margin-top: 0;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
  border-color: var(--text-dark);
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 1.125rem;
  color: var(--text-dark);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

@media (max-width: 768px) {
  .swiper-controls {
    display: none;
  }

  .stays-swiper {
    overflow: hidden;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
.header {
  background-color: transparent;
}

.logo h1,
nav ul li a,
.languageAndCurrency a span {
  color: #fff !important;
}

.languageAndCurrency {
  font-size: 1rem;
}

.lang-item {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  font-weight: 500;
}

.lang-item i {
  font-size: 1rem;
}

.lang-item:hover {
  color: #acadb0;
}

.divider {
  color: #ccc;
}

.sticky-search,
.sticky-search-h {
  width: 100%;
}

.scroll-top,
.airbnb-search-btn {
  background: linear-gradient(135deg, #007aff, #00c6ff) !important;
}

.airbnb-search-item {
  padding: 0 1rem !important;
}

.footer-logo {
  width: 50px;
  height: auto;
}

.room-details .room-header-image .room-badge,
.rooms-2 .rooms-grid .room-card .room-image .room-features,
.listing-badge {
  left: unset;
  right: 20px;
}

.listing-favorite {
  left: 12px;
  right: unset;
}

.arabic-select {
  direction: rtl;
  text-align: right;
  background-position: left 0.75rem center;
  padding-right: 0.75rem;
  padding-left: 2rem;
}

.feature-badge,
.listing-badge {
  background: linear-gradient(135deg, #4f2396 0%, #3a0ca3 40%, #007aff 100%) !important;
  color: #fff !important;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: -15px;
  z-index: 99999;
  background: transparent !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.scroll-top i {
  color: black;
  font-size: 1.25rem;
}

.header-colored {
  background: linear-gradient(135deg, #3a0ca3, #4361ee) !important;
}

.form-wrapper {
  max-width: 900px;
  margin: auto;
  padding: 0 1rem;
}

/* Badge New */
.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Fade In Up */
[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Fade In */
[data-aos="fade"] {
  transform: none;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .floating-whatsapp,
  .whatsapp-float,
  .scroll-top,
  .nav-controls,
  .mobile-menu-toggle {
    display: none !important;
  }

  .navbar-custom {
    position: relative;
    box-shadow: none;
  }

  .listing-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-dark: #000000;
    --text-medium: #333333;
    --border-color: #000000;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  /* Uncomment if you want dark mode support
  :root {
    --text-dark: #ffffff;
    --text-medium: #b0b0b0;
    --bg-light: #1a1a1a;
    --border-color: #333333;
  }

  body {
    background-color: #0a0a0a;
  }

  .navbar-custom,
  .listing-card,
  .testimonial-card,
  .package-card,
  .car-card {
    background-color: #1a1a1a;
  }
  */
}
html {
  -webkit-overflow-scrolling: touch;
}