/* ==========================================================================
   NAKTACHFO BLADNA - TRAVEL WEBSITE STYLESHEET (TRI PLAN INSPIRED + BILINGUAL)
   ========================================================================== */

:root {
  --tp-midnight: #0B2239;
  --tp-midnight-light: #16344f;
  --tp-cyan: #1BBAAA;
  --tp-cyan-hover: #149a8c;
  --tp-cyan-soft: #81E2ED;
  --tp-terracotta: #E05A47;
  --tp-terracotta-hover: #c94634;
  --tp-sand: #FAF7F2;
  --tp-cream: #F4EFE6;
  --tp-slate: #334E68;
  --tp-muted: #627D98;
  --tp-faint: #829AB1;
  --tp-line: #EFE9DF;
  --tp-white: #FFFFFF;
  --tp-font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --tp-font-arabic: 'Alexandria', 'Tajawal', 'Manrope', -apple-system, sans-serif;
  --tp-shadow-sm: 0 4px 12px rgba(11, 34, 57, 0.06);
  --tp-shadow-md: 0 12px 28px rgba(11, 34, 57, 0.12);
  --tp-shadow-lg: 0 20px 40px rgba(11, 34, 57, 0.18);
  --tp-radius-sm: 10px;
  --tp-radius-md: 16px;
  --tp-radius-lg: 24px;
  --tp-transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html[dir="rtl"] {
  font-family: var(--tp-font-arabic);
  text-align: right;
}

html[dir="rtl"] h1, 
html[dir="rtl"] h2, 
html[dir="rtl"] h3, 
html[dir="rtl"] h4,
html[dir="rtl"] .logo__title,
html[dir="rtl"] .logo__subtitle,
html[dir="rtl"] .btn,
html[dir="rtl"] .trip-card__title,
html[dir="rtl"] .city-card__title,
html[dir="rtl"] .kicker {
  font-family: var(--tp-font-arabic);
}

body {
  font-family: var(--tp-font-family);
  background-color: var(--tp-sand);
  color: var(--tp-midnight);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: var(--tp-font-arabic);
}

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

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Utilites */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--tp-midnight);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-terracotta);
}

.kicker__bar {
  width: 24px;
  height: 2px;
  background: var(--tp-terracotta);
  border-radius: 2px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.section-head__title h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 6px;
}

.section-head__intro {
  color: var(--tp-muted);
  font-size: 16px;
  max-width: 480px;
}

/* Language Toggle Button */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--tp-white);
  border: 1.5px solid var(--tp-line);
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  color: var(--tp-midnight);
  cursor: pointer;
  transition: var(--tp-transition);
  box-shadow: var(--tp-shadow-sm);
}

.lang-btn:hover {
  border-color: var(--tp-cyan);
  color: var(--tp-cyan);
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--tp-radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: var(--tp-transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--tp-cyan);
  color: var(--tp-white);
  box-shadow: 0 6px 20px rgba(27, 186, 170, 0.35);
}

.btn-primary:hover {
  background: var(--tp-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 186, 170, 0.45);
}

.btn-terracotta {
  background: var(--tp-terracotta);
  color: var(--tp-white);
  box-shadow: 0 6px 20px rgba(224, 90, 71, 0.35);
}

.btn-terracotta:hover {
  background: var(--tp-terracotta-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--tp-midnight);
  color: var(--tp-midnight);
}

.btn-outline:hover {
  background: var(--tp-midnight);
  color: var(--tp-white);
}

.btn-sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 233, 223, 0.8);
  transition: var(--tp-transition);
}

.header.scrolled {
  background: var(--tp-white);
  box-shadow: var(--tp-shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--tp-midnight) 0%, #16344f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-cyan-soft);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(11, 34, 57, 0.2);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__title {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--tp-midnight);
  line-height: 1;
}

.logo__subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--tp-terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--tp-midnight);
  transition: var(--tp-transition);
  position: relative;
}

.nav__link:hover {
  color: var(--tp-cyan);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--tp-midnight);
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  background: var(--tp-midnight);
  color: var(--tp-white);
  padding-top: 140px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.38;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,34,57,0.92) 0%, rgba(11,34,57,0.7) 50%, rgba(11,34,57,0.3) 100%);
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__content {
  max-width: 720px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-cyan-soft);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(38px, 6vw, 64px);
  color: var(--tp-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--tp-cyan-soft);
}

.hero__lead {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(250, 247, 242, 0.88);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.5;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item__value {
  font-size: 26px;
  font-weight: 800;
  color: var(--tp-white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-item__value i {
  color: #F4B400;
  font-size: 18px;
}

.stat-item__label {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.65);
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Search Bar Box */
.search-box {
  margin-top: 50px;
  background: var(--tp-white);
  border-radius: var(--tp-radius-md);
  padding: 16px 20px;
  box-shadow: var(--tp-shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tp-muted);
}

.search-field select,
.search-field input {
  border: 1px solid var(--tp-line);
  padding: 10px 14px;
  border-radius: var(--tp-radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-midnight);
  outline: none;
  background: var(--tp-sand);
  transition: var(--tp-transition);
}

.search-field select:focus,
.search-field input:focus {
  border-color: var(--tp-cyan);
  background: var(--tp-white);
}

/* ==========================================================================
   CITIES & DESTINATIONS SHOWCASE SECTION
   ========================================================================== */
.cities-sec {
  padding: 90px 0 40px;
  background: var(--tp-white);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.city-card {
  position: relative;
  height: 240px;
  border-radius: var(--tp-radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--tp-shadow-sm);
  transition: var(--tp-transition);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 34, 57, 0.88) 0%, rgba(11, 34, 57, 0.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--tp-white);
  transition: var(--tp-transition);
}

.city-card__tag {
  align-self: flex-start;
  background: var(--tp-terracotta);
  color: var(--tp-white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.city-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--tp-white);
  margin-bottom: 4px;
}

.city-card__region {
  font-size: 13px;
  color: var(--tp-cyan-soft);
  font-weight: 600;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tp-shadow-md);
}

.city-card:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   TRIPS SECTION & CARDS
   ========================================================================== */
.trips-sec {
  padding: 70px 0 90px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 36px;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--tp-white);
  border: 1px solid var(--tp-line);
  font-size: 14px;
  font-weight: 700;
  color: var(--tp-slate);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--tp-transition);
}

.filter-btn:hover {
  border-color: var(--tp-cyan);
  color: var(--tp-cyan);
}

.filter-btn.active {
  background: var(--tp-midnight);
  color: var(--tp-white);
  border-color: var(--tp-midnight);
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.trip-card {
  background: var(--tp-white);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--tp-transition);
  box-shadow: var(--tp-shadow-sm);
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tp-shadow-md);
  border-color: var(--tp-cyan-soft);
}

.trip-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--tp-midnight);
}

.trip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trip-card:hover .trip-card__media img {
  transform: scale(1.06);
}

.trip-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--tp-terracotta);
  color: var(--tp-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

html[dir="rtl"] .trip-card__badge {
  left: auto;
  right: 14px;
}

.trip-card__rating {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(11, 34, 57, 0.82);
  backdrop-filter: blur(6px);
  color: var(--tp-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

html[dir="rtl"] .trip-card__rating {
  right: auto;
  left: 14px;
}

.trip-card__rating i {
  color: #F4B400;
}

.trip-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.trip-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--tp-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.trip-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trip-card__meta-item i {
  color: var(--tp-cyan);
}

.trip-card__title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--tp-midnight);
  line-height: 1.25;
}

.trip-card__desc {
  font-size: 14px;
  color: var(--tp-slate);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trip-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trip-card__price {
  display: flex;
  flex-direction: column;
}

.trip-card__price-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-terracotta);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   ADVANTAGES / WHY US SECTION
   ========================================================================== */
.why-sec {
  background: var(--tp-cream);
  padding: 90px 0;
  border-top: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--tp-white);
  padding: 32px 24px;
  border-radius: var(--tp-radius-md);
  border: 1px solid var(--tp-line);
  box-shadow: var(--tp-shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--tp-transition);
}

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

.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--tp-radius-sm);
  background: rgba(27, 186, 170, 0.12);
  color: var(--tp-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--tp-muted);
}

/* ==========================================================================
   INSTAGRAM COMMUNITY GALLERY
   ========================================================================== */
.insta-sec {
  padding: 90px 0;
  background: var(--tp-midnight);
  color: var(--tp-white);
}

.insta-sec .section-head__title h2 {
  color: var(--tp-white);
}

.insta-sec .section-head__intro {
  color: rgba(250, 247, 242, 0.7);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.insta-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--tp-radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 34, 57, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--tp-white);
  font-weight: 700;
  font-size: 14px;
}

.insta-card__overlay i {
  font-size: 32px;
  color: var(--tp-cyan-soft);
}

.insta-card:hover img {
  transform: scale(1.08);
}

.insta-card:hover .insta-card__overlay {
  opacity: 1;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-sec {
  padding: 90px 0;
  background: var(--tp-sand);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--tp-white);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--tp-shadow-sm);
}

.review-card__stars {
  color: #F4B400;
  font-size: 14px;
  display: flex;
  gap: 4px;
}

.review-card__text {
  font-size: 15px;
  color: var(--tp-midnight);
  font-style: italic;
  line-height: 1.6;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__info h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.review-card__info span {
  font-size: 12px;
  color: var(--tp-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-sec {
  padding: 90px 0;
  background: var(--tp-white);
  border-top: 1px solid var(--tp-line);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-sm);
  background: var(--tp-sand);
  overflow: hidden;
  transition: var(--tp-transition);
}

.faq-question {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--tp-midnight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  color: var(--tp-cyan);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--tp-slate);
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--tp-midnight);
  color: var(--tp-white);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col p {
  color: rgba(250, 247, 242, 0.65);
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--tp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--tp-transition);
}

.social-btn:hover {
  background: var(--tp-cyan);
  color: var(--tp-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--tp-white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(250, 247, 242, 0.7);
  font-size: 14px;
  transition: var(--tp-transition);
}

.footer-links a:hover {
  color: var(--tp-cyan-soft);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   MODAL & DRAWERS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11, 34, 57, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--tp-transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--tp-white);
  border-radius: var(--tp-radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--tp-shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: var(--tp-transition);
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tp-white);
  border: 1px solid var(--tp-line);
  color: var(--tp-midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--tp-shadow-sm);
  transition: var(--tp-transition);
}

html[dir="rtl"] .modal-close {
  right: auto;
  left: 18px;
}

.modal-close:hover {
  background: var(--tp-terracotta);
  color: var(--tp-white);
}

/* ==========================================================================
   AUTOMATIC SMOOTH CROSS-FADE MODAL IMAGE SLIDER
   ========================================================================== */
.modal-slider {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--tp-midnight);
  border-top-left-radius: var(--tp-radius-lg);
  border-top-right-radius: var(--tp-radius-lg);
}

.modal-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.4s ease-out;
  transform: scale(1.06);
  z-index: 1;
}

.modal-slider__slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.modal-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 34, 57, 0.95) 0%, rgba(11, 34, 57, 0.3) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: var(--tp-white);
  pointer-events: none;
  z-index: 5;
}

.modal-slider__dots {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

html[dir="rtl"] .modal-slider__dots {
  right: auto;
  left: 24px;
}

.modal-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
}

.modal-slider__dot.active {
  background: var(--tp-cyan-soft);
  width: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(129, 226, 237, 0.6);
}

.modal-body {
  padding: 36px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
}

.itinerary-day {
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--tp-cyan);
}

html[dir="rtl"] .itinerary-day {
  padding-left: 0;
  padding-right: 20px;
  border-left: none;
  border-right: 3px solid var(--tp-cyan);
}

.itinerary-day h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.itinerary-day p {
  font-size: 14px;
  color: var(--tp-slate);
}

.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.inclusions-list li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inclusions-list li i {
  color: var(--tp-cyan);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--tp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: var(--tp-transition);
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .search-box {
    grid-template-columns: 1fr 1fr;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--tp-white);
    padding: 24px;
    border-bottom: 1px solid var(--tp-line);
    display: none;
    box-shadow: var(--tp-shadow-md);
  }
  .header__nav.active {
    display: block;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .mobile-toggle {
    display: block;
  }
  .search-box {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
