/* ===========================
   GOOGLE FONTS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Cairo:wght@400;500;600;700;800;900&display=swap');

/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --primary:      #00AEEF;
  --primary-dark: #0090C8;
  --text-dark:    #1a1a2e;
  --text-gray:    #6b7280;
  --text-light:   #9ca3af;
  --white:        #ffffff;
  --bg-light:     #f9fafb;
  --border:       #e5e7eb;
  --shadow:       0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

/* LTR - Default */
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  direction: ltr;
}

/* RTL - Arabic */
body.rtl {
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  direction: rtl;
  text-align: right;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar__logo-icon {
  width: 32px;
  height: 32px;
}

.navbar__logo-icon svg {
  width: 100%;
  height: 100%;
}

/* Nav Links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

body.rtl .navbar__links a::after {
  left: auto;
  right: 0;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Navbar Right */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===========================
   LANGUAGE SWITCHER
=========================== */
.lang-selector-wrap {
  position: relative;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}

.lang-selector:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-selector svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.lang-chevron {
  transition: transform 0.3s ease;
  width: 14px !important;
  height: 14px !important;
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  min-width: 160px;
  overflow: hidden;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.rtl .lang-dropdown {
  right: auto;
  left: 0;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-align: left;
}

body.rtl .lang-option {
  text-align: right;
  flex-direction: row-reverse;
}

.lang-option:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.lang-option.active {
  color: var(--primary);
  font-weight: 600;
  background: #f0f9ff;
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.lang-check {
  margin-left: auto;
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

body.rtl .lang-check {
  margin-left: 0;
  margin-right: auto;
}


/* ===========================
   HAMBURGER BUTTON
=========================== */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar__hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar__hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar__close-wrap {
    display: none;
}

.navbar__overlay {
    display: none;
}

.navbar__mobile-lang {
    display: none;
}

/* ===========================
   RESPONSIVE - mobile menu
=========================== */
@media (max-width: 768px) {

    .navbar__container {
        position: relative;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.35s ease;
        overflow-y: auto;
        display: flex;
    }

    body.rtl .navbar__links {
        right: auto;
        left: -300px;
        transition: left 0.35s ease;
        box-shadow: 5px 0 30px rgba(0,0,0,0.15);
    }

    .navbar__links.open {
        right: 0;
    }

    body.rtl .navbar__links.open {
        right: auto;
        left: 0;
    }

    .navbar__overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar__overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .navbar__close-wrap {
        display: flex;
        justify-content: flex-end;
        padding: 16px 20px 8px;
    }

    body.rtl .navbar__close-wrap {
        justify-content: flex-start;
    }

    .navbar__close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        color: var(--text-dark);
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }

    .navbar__close:hover {
        background: var(--bg-light);
        color: var(--primary);
    }

    .navbar__links li {
        border-bottom: 1px solid var(--border);
    }

    .navbar__links a {
        display: block;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark);
    }

    .navbar__links a::after {
        display: none;
    }

    .navbar__links a:hover,
    .navbar__links a.active {
        background: var(--bg-light);
        color: var(--primary);
    }

    .navbar__links a.active {
        border-left: 3px solid var(--primary);
    }

    body.rtl .navbar__links a.active {
        border-left: none;
        border-right: 3px solid var(--primary);
    }

    .navbar__mobile-lang {
        display: block;
        padding: 20px 24px;
        border-top: 1px solid var(--border);
        margin-top: auto;
    }

    .mobile-lang-title {
        font-size: 11px;
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .mobile-lang-options {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-lang-options .lang-option {
        border-radius: var(--radius-sm);
        padding: 10px 14px;
    }

    .hero__title {
        font-size: 48px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .section__header {
        flex-direction: column;
        gap: 12px;
    }

    body.rtl .section__header {
        flex-direction: column;
        align-items: flex-end;
    }

    .search-box {
        transform: translateY(0);
        margin: 0;
        margin-top: 30px;
        border-radius: 0;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
    }

    body.rtl .lang-dropdown {
        left: auto;
        right: 0;
    }
   .contact-form {
    width: 80% !important;
    margin-top: 20px;
}
}

body.menu-open {
    overflow: hidden;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 40, 0.6) 0%,
    rgba(10, 20, 40, 0.5) 60%,
    rgba(10, 20, 40, 0.3) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px 24px 0;
  max-width: 900px;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
}

body.rtl .hero__subtitle {
  letter-spacing: 0;
}

.hero__title {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

body.rtl .hero__title {
  letter-spacing: 0;
  text-transform: none;
}

.hero__description {
  font-size: 16px;
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* ===========================
   SEARCH BOX
=========================== */
.search-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: translateY(50%);
}

.search-field {
  flex: 1;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
  min-width: 0;
}

body.rtl .search-field {
  border-right: none;
  border-left: 1px solid var(--border);
}

.search-field:last-of-type {
  border-right: none;
}

body.rtl .search-field:last-of-type {
  border-left: none;
}

.search-field__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

body.rtl .search-field__label {
  letter-spacing: 0;
}

.search-field__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.search-field__value input,
.search-field__value select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  width: 100%;
  font-family: inherit;
}

.search-field--duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}

body.rtl .search-field--duration {
  border-right: none;
  border-left: 1px solid var(--border);
}

.duration-badge {
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
}

.search-passengers {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1.5;
  padding: 8px 20px;
}

.passengers-text {
  flex: 1;
}

.passengers-text .search-field__label {
  display: block;
}

.chevron-btn {
  background: none;
  color: var(--text-gray);
  padding: 4px;
}

.search-btn {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: 12px;
}

body.rtl .search-btn {
  margin-left: 0;
  margin-right: 12px;
}

.search-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

/* ===========================
   SECTIONS COMMON
=========================== */
.section {
  padding: 80px 24px;
}

.section--gray {
  background: var(--bg-light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.section__sub {
  font-size: 13px;
  color: var(--text-light);
}

.section__center {
  text-align: center;
  margin-bottom: 40px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,174,239,0.35);
}

/* ===========================
   TOP DESTINATIONS
=========================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-card:hover .dest-card__img {
  transform: scale(1.06);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.dest-card__fav {
  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;
  cursor: pointer;
  transition: var(--transition);
}

body.rtl .dest-card__fav {
  right: auto;
  left: 12px;
}

.dest-card__fav:hover {
  background: var(--white);
  transform: scale(1.1);
}

.dest-card__fav svg {
  width: 16px;
  height: 16px;
  color: var(--text-gray);
}

.dest-card__info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
}

body.rtl .dest-card__info {
  left: auto;
  right: 16px;
  text-align: right;
}

.dest-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-card__price {
  font-size: 12px;
  opacity: 0.9;
}

/* ===========================
   POPULAR PACKAGES
=========================== */
.packages {
  padding: 80px 24px;
  text-align: center;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-gray);
  transition: var(--transition);
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: left;
}

body.rtl .pkg-card {
  text-align: right;
}

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

.pkg-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.pkg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-card__img {
  transform: scale(1.05);
}

.pkg-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

body.rtl .pkg-card__badge {
  left: auto;
  right: 12px;
}

.pkg-card__body {
  padding: 18px;
}

.pkg-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-light);
}

body.rtl .pkg-card__meta {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.pkg-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

body.rtl .pkg-card__meta span {
  flex-direction: row-reverse;
}

.pkg-card__meta svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.pkg-card__locations {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

body.rtl .pkg-card__locations {
  flex-direction: row-reverse;
}

.location-tag {
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-gray);
}

.pkg-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.pkg-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.pkg-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-gray);
}

body.rtl .pkg-feature {
  flex-direction: row-reverse;
}

.pkg-feature svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===========================
   CAROUSEL CONTROLS
=========================== */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}

.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

body.rtl .carousel-btn:first-of-type svg {
  transform: scaleX(-1);
}

body.rtl .carousel-btn:last-of-type svg {
  transform: scaleX(-1);
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact {
  padding: 80px 24px;
}

.contact-container {
  margin: 0 auto;
  max-width: 1280px;
  display: flex;
  flex-direction: row;

}

.contact-header {
  width:45%
}

.contact-form {
  width: 55%;
  max-width: 700px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

body.rtl .form-input {
  text-align: right;
}

.form-input::placeholder {
  color: var(--text-light);
}

body.rtl .form-input::placeholder {
  text-align: right;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-submit .btn-primary {
  width: auto;
  padding: 14px 60px;
  border-radius: 30px;
  font-size: 15px;
}


/* ===========================
   ALERTS
=========================== */
.alert-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.alert-error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-error p {
  margin-bottom: 4px;
}

.alert-error p:last-child {
  margin-bottom: 0;
}

.input-error {
  border-color: #ef4444 !important;
}


/* ===========================
   PACKAGES LOADING & EMPTY
=========================== */
.packages-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.packages-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-light);
}

.packages-empty svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--border);
}

.packages-empty h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.packages-empty p {
  font-size: 13px;
}

/* Carousel btn disabled */
.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  border-color: var(--border);
  color: var(--text-dark);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  grid-column: 1 / -1;
}

.empty-state svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--border);
}

.empty-state h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 13px;
  color: var(--text-light);
}

/* pkg-card transition */
.packages-grid {
  transition: opacity 0.3s ease;
}



/* ===========================
   FOOTER
=========================== */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.6);
  padding: 20px 24px;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* RTL - footer reversed */
body.rtl .footer__container {
  flex-direction: row-reverse;
}

.footer__copy {
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 20px;
}

body.rtl .footer__links {
  flex-direction: row-reverse;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-box {
    flex-wrap: wrap;
    gap: 12px;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-width: calc(50% - 12px);
  }

  body.rtl .search-field {
    border-left: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
   .navbar__links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.35s ease;
        overflow-y: auto;
    }

    .navbar__hamburger.open {
        display: none;
    }

  .hero__title {
    font-size: 48px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .section__header {
    flex-direction: column;
    gap: 12px;
  }

  body.rtl .section__header {
    flex-direction: column;
    align-items: flex-end;
  }

  .search-box {
    transform: translateY(0);
    margin: 0;
    margin-top: 30px;
    border-radius: 0;
  }

  .lang-dropdown {
    right: auto;
    left: 0;
  }

  body.rtl .lang-dropdown {
    left: auto;
    right: 0;
  }


  .contact-container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact {
    padding: 0;
}
}