/* ============================================
   CSS VARIABLES & ROOT STYLES
   ============================================ */
:root {
  --primary-color: #7b4dff;
  --primary-hover: #4f2396;
  --secondary-color: #008489;
  --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;
  
  /* Fluid spacing scale */
  --space-xs: clamp(4px, 1vw, 8px);
  --space-sm: clamp(8px, 2vw, 16px);
  --space-md: clamp(16px, 3vw, 24px);
  --space-lg: clamp(24px, 4vw, 40px);
  --space-xl: clamp(40px, 6vw, 80px);
  
  /* Fluid typography */
  --text-xs: clamp(10px, 1.5vw, 12px);
  --text-sm: clamp(12px, 2vw, 14px);
  --text-base: clamp(14px, 2.5vw, 16px);
  --text-lg: clamp(16px, 3vw, 18px);
  --text-xl: clamp(18px, 4vw, 24px);
  --text-2xl: clamp(24px, 5vw, 32px);
  --text-3xl: clamp(28px, 6vw, 40px);
  --text-4xl: clamp(32px, 7vw, 48px);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  /*overflow-x: hidden;*/
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

/* ============================================
   NAVIGATION - FULLY RESPONSIVE
   ============================================ */
.navbar-custom {
  background: #ffffff;
  padding: clamp(12px, 2vw, 16px) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
}

.navbar-custom.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-weight: 700;
  font-size: clamp(20px, 4vw, 24px);
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.navbar-brand span {
  color: var(--text-dark);
}

/* Desktop Navigation */
.navmenu {
  padding: 0;
}

.navmenu svg {
  height: clamp(14px, 2vw, 16px);
  padding-right: clamp(6px, 1vw, 10px);
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color, var(--text-dark));
  padding: clamp(12px, 2vw, 20px) clamp(10px, 1.5vw, 16px);
  font-size: var(--text-base);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu li:last-child a {
  padding-right: 0;
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color, var(--primary-color));
}

/* Dropdown Menu */
.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--nav-dropdown-background-color, #ffffff);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--nav-dropdown-color, var(--text-dark));
}

.navmenu .dropdown ul a i {
  font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
  color: var(--nav-dropdown-hover-color, var(--primary-color));
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
}

.navmenu .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
}

/* Custom Nav Links */
.nav-link-custom {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: clamp(13px, 2vw, 14px);
  padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 16px) !important;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  text-decoration: none;
  margin: 4px;
  display: inline-flex;
  align-items: center;
}

.nav-link-custom:hover {
  background-color: var(--bg-light);
  color: var(--text-dark) !important;
}

.nav-link-custom.active {
  color: var(--text-dark) !important;
  background-color: transparent;
  font-weight: 600;
}

/* Nav Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  flex-wrap: wrap;
}

.control-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 14px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: white;
  font-size: clamp(12px, 2vw, 13px);
  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: 12px;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
  z-index: 1001;
}

/* ============================================
   HERO SECTION - RESPONSIVE
   ============================================ */
/* نفس padding العربي بالضبط */
.hero-section {
  padding: 0 0 1rem 0 !important;  /* نفس العربي */
  display: flex;
  align-items: center;
  min-height: auto; /* نشيل الـ 100vh لو موجود */
}

/* Hero Content - نفس العربي */
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Title - نفس حجم العربي */
.hero-title {
  font-size: 48px;  /* نفس العربي */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

/* Hero Subtitle - نفس العربي */
.hero-subtitle {
  font-size: 18px;  /* نفس العربي */
  color: var(--text-medium);
  margin-bottom: 8px;
}

/* Hero Trust Badge */
.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);
}

/* ============================================
   AIRBNB SEARCH - FULLY RESPONSIVE
   ============================================ */
.airbnb-search-wrapper {
  max-width: min(850px, 95%);
  margin: 0 auto;
  position: relative;
  padding: 0 var(--space-sm);
}

.sticky-search-h {
  max-width: min(850px, 95%);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.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;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 32px);
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.2s ease;
  position: relative;
  min-width: 0;
}

.airbnb-search-item:hover {
  background-color: #ebebeb;
}

.airbnb-search-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.airbnb-label {
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 800;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  white-space: nowrap;
}

.airbnb-input {
  border: none;
  background: transparent;
  font-size: clamp(12px, 2vw, 14px);
  color: var(--text-medium);
  outline: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  min-width: 0;
}

.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: 8px;
}

[dir="ltr"] .who-item {
  padding-right: 0;
  padding-left: 8px;
}

.airbnb-search-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: clamp(40px, 8vw, 48px);
  height: clamp(40px, 8vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

[dir="ltr"] .airbnb-search-btn {
  margin-left: 0;
  margin-right: 8px;
}

.airbnb-search-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

.airbnb-search-btn i {
  font-size: 16px;
}

.airbnb-search-btn span {
  display: none;
}

.airbnb-search-btn.with-text {
  width: auto;
  padding: 0 20px;
  border-radius: 24px;
  gap: 8px;
}

.airbnb-search-btn.with-text span {
  display: none;
  font-weight: 600;
  font-size: 14px;
}

/* 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: clamp(16px, 3vw, 24px);
  width: min(320px, 90vw);
  display: none;
  z-index: 100;
}

[dir="ltr"] .guests-dropdown {
  right: auto;
  left: 0;
}

.guests-dropdown.active {
  display: block;
}

.guest-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #ebebeb;
  gap: var(--space-sm);
}

.guest-type:last-child {
  border-bottom: none;
}

.guest-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.guest-desc {
  font-size: 12px;
  color: var(--text-medium);
  margin-top: 2px;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #b0b0b0;
  background: white;
  color: var(--text-medium);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.counter-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ============================================
   SECTIONS - RESPONSIVE
   ============================================ */
.section-padding {
  padding: clamp(20px, 4vw, 40px) 0;
  width: 100%;
}

.section-header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.section-subtitle {
  color: var(--text-medium);
  font-size: var(--text-base);
}

.view-all-link {
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: underline;
  font-size: clamp(12px, 2vw, 14px);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* ============================================
   LISTING CARDS - RESPONSIVE GRID
   ============================================ */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: clamp(16px, 3vw, 24px);
  padding: 0 var(--space-md);
}

.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;
}

.listing-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.listing-image-wrapper {
  color: rgb(17, 17, 17);
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px 16px 0 0;
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
  max-height: 220px;
}

.listing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.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: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 600;
  color: var(--text-dark);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.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: 0;
  transition: all 0.2s ease;
  z-index: 2;
}

.listing-card:hover .listing-favorite {
  opacity: 1;
}

.listing-favorite:hover {
  transform: scale(1.1);
}

.listing-details {
  padding: 0 4px;
}

.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 4px;
}

.listing-title {
  font-weight: 600;
  font-size: clamp(13px, 2.5vw, 15px);
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.listing-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  flex-shrink: 0;
}

.listing-rating i {
  color: var(--text-dark);
  font-size: 12px;
}

.listing-location {
  color: var(--text-medium);
  font-size: clamp(13px, 2.5vw, 15px);
  margin-bottom: 4px;
}

.listing-dates {
  color: var(--text-light);
  font-size: clamp(12px, 2vw, 14px);
  margin-bottom: 8px;
}

.listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.listing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-dark);
}

.price-unit {
  font-size: clamp(12px, 2vw, 14px);
  color: var(--text-medium);
}

.whatsapp-btn-sm {
  background: #25d366;
  color: white;
  border: none;
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2vw, 16px);
  border-radius: var(--radius-full);
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.whatsapp-btn-sm:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

/* ============================================
   CAR RENTAL CARDS
   ============================================ */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: clamp(16px, 3vw, 24px);
  padding: 0 var(--space-md);
}

.car-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.car-image-wrapper {
  position: relative;
  height: clamp(150px, 30vw, 200px);
  overflow: hidden;
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-content {
  padding: clamp(16px, 3vw, 20px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.car-title {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  margin-bottom: 8px;
}

.car-specs {
  display: flex;
  gap: clamp(8px, 2vw, 16px);
  margin-bottom: 16px;
  font-size: clamp(12px, 2vw, 14px);
  color: var(--text-medium);
  flex-wrap: wrap;
}

.car-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  flex-wrap: wrap;
  gap: 8px;
}

.car-price {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 700;
  color: var(--text-dark);
}

.car-price span {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 400;
  color: var(--text-medium);
}

/* ============================================
   PACKAGE CARDS
   ============================================ */
.package-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 24px);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.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);
  box-shadow: var(--shadow-md);
}

.package-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff8e1;
  color: #f9a825;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: clamp(11px, 2vw, 12px);
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
}

.package-title {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 700;
  margin-bottom: 12px;
}

.package-includes {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.package-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 2vw, 14px);
  color: var(--text-medium);
  margin-bottom: 8px;
}

.package-includes i {
  color: var(--secondary-color);
  font-size: 16px;
  flex-shrink: 0;
}

.package-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.package-price {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: var(--primary-color);
}

.package-price span {
  font-size: clamp(12px, 2vw, 14px);
  color: var(--text-medium);
  font-weight: 400;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  background: var(--bg-light);
  padding: clamp(40px, 8vw, 80px) 0;
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(24px, 4vw, 40px);
  text-align: center;
  padding: 0 var(--space-md);
}

.trust-item {
  padding: clamp(16px, 3vw, 24px);
}

.trust-icon {
  width: clamp(48px, 10vw, 64px);
  height: clamp(48px, 10vw, 64px);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  font-size: clamp(20px, 4vw, 28px);
  color: var(--primary-color);
}

.trust-number {
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.trust-label {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-medium);
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: white;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #ffb400;
  margin-bottom: 16px;
  font-size: clamp(12px, 2vw, 14px);
}

.testimonial-text {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: clamp(40px, 8vw, 48px);
  height: clamp(40px, 8vw, 48px);
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: clamp(14px, 2.5vw, 16px);
  flex-shrink: 0;
}

.author-info h5 {
  font-size: clamp(13px, 2vw, 14px);
  font-weight: 600;
  margin-bottom: 2px;
}

.author-info span {
  font-size: clamp(11px, 2vw, 13px);
  color: var(--text-medium);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff5a5f 100%);
  padding: clamp(40px, 8vw, 80px) var(--space-md);
  text-align: center;
  color: white;
  width: 100%;
}

.cta-title {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(15px, 3vw, 18px);
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: min(600px, 90%);
  margin-left: auto;
  margin-right: auto;
}

.cta-whatsapp-btn {
  background: white;
  color: #25d366;
  border: none;
  padding: clamp(14px, 3vw, 18px) clamp(30px, 5vw, 40px);
  border-radius: var(--radius-full);
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  flex-wrap: wrap;
  justify-content: center;
}

.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: clamp(20px, 4vw, 40px);
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 2.5vw, 15px);
  opacity: 0.95;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp,
.whatsapp-float {
  position: fixed;
  bottom: clamp(16px, 4vw, 24px);
  right: clamp(16px, 4vw, 24px);
  width: clamp(50px, 12vw, 60px);
  height: clamp(50px, 12vw, 60px);
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(24px, 5vw, 32px);
  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;
}

.whatsapp-float {
  left: clamp(16px, 4vw, 24px);
  right: auto;
}

@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;
}

/* ============================================
   FOOTER - RESPONSIVE
   ============================================ */
.footer-custom {
  background: var(--bg-light);
  padding: clamp(40px, 6vw, 60px) 0 clamp(16px, 3vw, 24px);
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: 40px;
  padding: 0 var(--space-md);
}

.footer-brand {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}
.footer-logo {
  width: 50px;
  height: auto;
}
.footer-desc {
  color: #717171;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: clamp(36px, 8vw, 40px);
  height: clamp(36px, 8vw, 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);
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.footer-title {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #717171;
  text-decoration: none;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: clamp(12px, 2vw, 14px);
  color: var(--text-medium);
  padding: 24px var(--space-md) 0;
}

/* ============================================
   SWIPER STYLES - RESPONSIVE
   ============================================ */
.swiper-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  inset: auto;
  margin-top: 0;
  width: clamp(36px, 8vw, 44px);
  height: clamp(36px, 8vw, 44px);
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid #dddddd;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #f7f7f7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border-color: #222222;
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: clamp(14px, 3vw, 18px);
  color: #222222;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.stays-swiper {
  overflow: hidden !important;
  padding: 10px 0;
}

.stays-swiper .swiper-wrapper {
  transition-timing-function: ease-out;
}

.stays-swiper .swiper-slide {
  height: auto;
}

.stays-swiper .listing-card {
  cursor: pointer;
  height: 100%;
}

.stays-swiper .listing-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3 !important;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin-bottom: 12px;
}

.stays-swiper .listing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  background-color: rgb(243, 243, 243);
}

.stays-swiper .listing-card:hover .listing-image {
  transform: scale(1.05);
}

.stays-swiper .listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #4f2396 0%, #3a0ca3 40%, #007aff 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.stays-swiper .listing-badge.urgent {
  background: #ff385c;
}

.stays-swiper .listing-badge.hot {
  background: #ff5a5f;
}

.stays-swiper .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: 0;
  transition: all 0.2s ease;
}

.stays-swiper .listing-card:hover .listing-favorite {
  opacity: 1;
}

.stays-swiper .listing-favorite:hover {
  transform: scale(1.1);
}

.stays-swiper .listing-details {
  padding: 0 4px;
}

.stays-swiper .listing-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 4px;
}

.stays-swiper .listing-title {
  font-weight: 600;
  font-size: clamp(12px, 2.5vw, 13px) !important;
  color: #222222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stays-swiper .listing-location {
  color: #717171;
  font-size: clamp(11px, 2vw, 12px) !important;
  margin-bottom: 4px;
}

.stays-swiper .listing-dates {
  color: #b0b0b0;
  font-size: clamp(11px, 2vw, 12px) !important;
  margin-bottom: 8px;
}

.stays-swiper .listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.stays-swiper .listing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stays-swiper .price-amount {
  font-weight: 600;
  font-size: clamp(12px, 2.5vw, 14px) !important;
  color: #222222;
}

.stays-swiper .price-unit {
  font-size: clamp(11px, 2vw, 12px);
  color: #717171;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: min(1280px, 95%) !important;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background-color: transparent;
  width: 100%;
}

.header-colored {
  background: linear-gradient(135deg, #3a0ca3, #4361ee) !important;
}

.logo h1,
nav ul li a,
.languageAndCurrency a span {
  color: rgb(255, 255, 255) !important;
}

.languageAndCurrency {
  font-size: clamp(14px, 2.5vw, 16px);
}

.lang-item {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
  font-weight: 500;
}

.lang-item i {
  font-size: 16px;
}

.lang-item:hover {
  color: #0d6efd;
}

.divider {
  color: #ccc;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: clamp(10px, 3vw, 15px);
  bottom: -15px;
  z-index: 99999;
  background-color: transparent !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: none;
  cursor: pointer;
}

.scroll-top i {
  color: black;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.hero-text h1 {
  font-size: clamp(28px, 6vw, 35px) !important;
}

.form-wrapper {
  max-width: min(900px, 95%);
  margin: auto;
  padding: 0 var(--space-md);
}

.feature-badge,
.listing-badge {
  background: linear-gradient(135deg, #4f2396 0%, #3a0ca3 40%, #007aff 100%) !important;
  color: #fff !important;
}

.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 700;
  z-index: 2;
}

/* ============================================
   TABLET BREAKPOINT (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .navmenu ul {
    gap: 4px;
  }
  
  .airbnb-search-container {
    height: 64px;
  }
}

/* ============================================
   MOBILE BREAKPOINT (< 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .mobile-nav-toggle {
    display: block;
  }
  
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80%);
    height: 100vh;
    background: white;
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  
  .navmenu.active {
    right: 0;
  }
  
  .navmenu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .navmenu a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  
  .navmenu .dropdown ul {
    position: static;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: none;
  }
  
  .navmenu .dropdown.active ul {
    display: block;
  }
  
  /* Mobile Search */
  .airbnb-search-container {
    flex-direction: column;
    height: auto;
    border-radius: 24px;
    padding: 16px;
  }
  
  .airbnb-search-item {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
  }
  
  .airbnb-divider {
    display: none;
  }
  
  .who-item {
    flex-direction: column;
    align-items: stretch;
  }
  
  .airbnb-search-btn {
    width: 100%;
    border-radius: 12px;
    margin: 12px 0 0 0;
    height: 48px;
  }
  
  .airbnb-search-btn.with-text {
    border-radius: 12px;
  }
  
  .guests-dropdown {
    width: 100%;
    right: 0;
    left: 0;
    position: static;
    margin-top: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  /* Mobile Grids */
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .car-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sticky-search-h {
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
}
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section-header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  .cta-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .swiper-controls {
    display: none;
  }
  
  .stays-swiper {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 12px;
    padding: 10px var(--space-md);
  }
  
  .stays-swiper .swiper-slide {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

/* ============================================
   SMALL MOBILE BREAKPOINT (< 480px)
   ============================================ */
@media (max-width: 480px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: clamp(24px, 8vw, 28px);
  }
  
  .nav-controls {
    gap: 6px;
  }
  
  .control-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .control-btn span {
    display: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   LARGE SCREENS (> 1400px)
   ============================================ */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
  
  .listing-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* ============================================
   SAFARI & IOS SPECIFIC FIXES
   ============================================ */
@supports (-webkit-touch-callout: none) {
  .airbnb-search-container {
    transform: translateZ(0);
  }
  
  .floating-whatsapp,
  .whatsapp-float {
    transform: translateZ(0);
  }
}

/* ============================================
   REDUCED MOTION 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;
  }
  
  .floating-whatsapp,
  .whatsapp-float {
    animation: none;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .floating-whatsapp,
  .whatsapp-float,
  .scroll-top,
  .nav-controls,
  .swiper-controls {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero-section {
    padding: 0 0 1rem 0;
  }
  
  .listing-card,
  .car-card,
  .package-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* ============================================
   HIGH CONTRAST MODE SUPPORT
   ============================================ */
@media (prefers-contrast: high) {
  :root {
    --text-dark: #000000;
    --text-medium: #333333;
    --border-color: #666666;
  }
  
  .airbnb-search-container {
    border-width: 2px;
  }
}