/* 
   Quad Waves - Custom Premium Stylesheet
   Typography: IBM Plex Sans Arabic
   Base Direction: RTL (Arabic)
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #0f2b4f;
  --primary-dark: #06264c;
  --accent-color: #037eca;
  --accent-light: #4ebef9;
  --bg-light: #fcfdff;
  --text-dark: #1e2530;
  --text-muted: #5a687c;
  --text-white: #ffffff;
  --border-color: #e5ebf3;
  --font-family: 'IBM Plex Sans Arabic', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --shadow-sm: 0 2px 8px rgba(15, 43, 79, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 43, 79, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 43, 79, 0.12);
  --border-radius: 12px;
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for fixed header */
  font-size: 16px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: var(--font-family);
  outline: none;
}

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

ul {
  list-style: none;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.scrolled {
  background-color: rgba(6, 38, 76, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 45px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo {
  height: 38px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.mobile-lang-container {
  display: none;
}

.lang-switch {
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  line-height: 1;
}

.lang-switch:hover {
  background: var(--text-white);
  color: var(--primary-color);
  border-color: var(--text-white);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0;
  line-height: 1;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 6rem 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    color: var(--text-white);
    padding: 0.75rem 0;
    font-size: 1rem;
  }
  .header-actions {
    display: none !important;
  }
  .mobile-lang-container {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
  }
  .mobile-lang-switch {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
  }
  .menu-toggle {
    display: flex;
  }
  header {
    padding: 1.25rem 2rem;
  }
  .slide-region {
    font-size: 90px;
  }
  .slide-title {
    font-size: 1.5rem;
  }
  .slide-subtitle {
    font-size: 1rem;
  }
  .slide-info-card {
    padding: 1rem 1.5rem;
    max-width: 90%;
    margin-bottom: 1.5rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  
  /* Destinations Mosaic Responsive */
  .destinations-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
    gap: 12px;
  }
  .mosaic-europe {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .mosaic-africa {
    grid-column: 2;
    grid-row: 1;
  }
  .mosaic-asia {
    grid-column: 2;
    grid-row: 2;
  }
  .mosaic-americas {
    grid-column: 1;
    grid-row: 3;
  }
  .mosaic-me {
    grid-column: 2;
    grid-row: 3;
  }
  
  /* About Section Responsive */
  .about-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .about-images {
    flex: 0 0 100%;
    order: 1;
  }
  .about-content {
    order: 2;
  }
  
  /* Services Grid Responsive */
  .services-grid {
    gap: 1rem;
  }
  .service-card {
    flex: 0 0 200px;
    max-width: 200px;
  }
  
  /* Why Grid Responsive */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact Section Responsive */
  #contact {
    flex-direction: column;
    padding: 2rem 2rem;
  }
  .contact-info {
    order: 1;
    flex: 1;
  }
  .contact-divider {
    display: none;
  }
  .contact-form-wrapper {
    order: 2;
    flex: 1;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer Responsive */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  footer {
    padding: 4rem 2rem 2rem 2rem;
  }
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-light);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--accent-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-light);
}

.nav-links a.active::after {
  width: 100%;
}

.lang-switch {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.lang-switch:hover {
  background: var(--text-white);
  color: var(--primary-color);
  border-color: var(--text-white);
}

.menu-toggle {
  display: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Slider Section */
#hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s linear;
}

.slide.active .slide-bg {
  transform: scale(1.15);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(6, 38, 76, 0.5) 0%, rgba(6, 38, 76, 0.3) 50%, rgba(6, 38, 76, 0.7) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  color: var(--text-white);
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.5s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-region {
  font-size: 250px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 10px 40px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.slide-info-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.slide-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 100%;
  margin: 0;
  line-height: 1.7;
  opacity: 0.95;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-white);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(3, 126, 202, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: #0266a8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(3, 126, 202, 0.5);
}

.slide-content .btn-primary {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
  box-shadow: none;
}

.slide-content .btn-primary:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

/* Slider Controls */
.slider-arrows {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.arrow:hover {
  background: var(--text-white);
  color: var(--primary-color);
  border-color: var(--text-white);
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.dot {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  width: 50px;
  background: var(--text-white);
}

/* Section Structure */
section {
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px; /* Offset for fixed header */
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.section-subtitle {
  color: var(--accent-color);
  font-size: 2.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Destinations Mosaic Section */
#destinations {
  background-color: #f4f7ff;
  padding: 3.5rem 4rem;
}

/* Section header overrides for destinations */
.dest-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.dest-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
  flex-direction: row-reverse;
}

.dest-title-icon {
  color: var(--primary-color);
  font-size: 2rem;
  transform: rotate(-25deg) scaleX(-1);
  flex-shrink: 0;
  opacity: 0.85;
}

.dest-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.25;
}

/* Dashed separator with plane */
.dest-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1.75rem auto 0 auto;
  max-width: 650px;
  width: 100%;
}

.dest-sep-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    to left,
    var(--accent-color) 0px,
    var(--accent-color) 7px,
    transparent 7px,
    transparent 14px
  );
  opacity: 0.45;
}

.dest-sep-icon {
  color: var(--accent-color);
  font-size: 1.3rem;
  padding: 0 1rem;
  transform: rotate(35deg);
  flex-shrink: 0;
}

/* Mosaic Grid */
.destinations-mosaic {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1.4fr;
  grid-template-rows: 265px 265px;
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Base mosaic card */
.mosaic-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(15, 43, 79, 0.12);
}

.mosaic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(15, 43, 79, 0.22);
}

.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.mosaic-card:hover .mosaic-img {
  transform: scale(1.07);
}

.mosaic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(8, 24, 56, 0.9) 0%, rgba(8, 24, 56, 0.3) 60%, transparent 100%);
}

.mosaic-label {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
  display: block;
}

/* Grid placement */
.mosaic-africa   { grid-column: 3; grid-row: 1; }
.mosaic-asia     { grid-column: 2; grid-row: 1; }
.mosaic-europe   { grid-column: 1; grid-row: 1 / 3; }
.mosaic-americas { grid-column: 3; grid-row: 2; }
.mosaic-me       { grid-column: 2; grid-row: 2; }

.mosaic-me-wrapper {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mosaic-me-wrapper .mosaic-card {
  height: 100%;
}

/* About Section */
#about {
  display: flex;
  align-items: center;
  gap: 4rem;
  background-color: var(--bg-light);
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  width: 100%;
}

.about-images {
  flex: 0 0 45%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  order: 2;
}

.about-img-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  flex: 1;
  padding-top: 1rem;
  order: 1;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.separator-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    to left,
    var(--accent-color) 0px,
    var(--accent-color) 7px,
    transparent 7px,
    transparent 14px
  );
  opacity: 0.6;
}

.separator-icon {
  color: var(--accent-color);
  font-size: 1.5rem;
  padding: 0 1rem;
  flex-shrink: 0;
  transform: rotate(25deg);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
  transform: rotate(25deg);
}

.feature-text {
  color: var(--accent-color);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Services Section */
#services {
  background-color: var(--bg-light);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  flex: 0 0 250px;
  max-width: 250px;
  width: 250px;
  min-height: auto;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  box-shadow: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  overflow: visible;
  z-index: 1;
  cursor: pointer;
}

.service-card::before {
  content: none;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  filter: brightness(1.02);
}

.service-card-img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}


.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Packages Section */
#packages {
  background-color: var(--bg-light);
}

.packages-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin: 1.5rem 0;
}

.packages-slider {
  overflow: hidden;
  flex: 1;
}

.packages-grid {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.packages-grid::-webkit-scrollbar {
  display: none;
}

.package-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.slider-nav {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: var(--text-white);
  box-shadow: var(--shadow-sm);
  color: var(--primary-color);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-nav:hover {
  background-color: var(--accent-color);
  color: var(--text-white);
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-img-wrapper {
  position: relative;
  height: 250px;
}

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

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.package-content {
  padding: 2rem;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fbbf24;
  font-size: 0.9rem;
}

.package-reviews {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.package-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.package-destinations {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.package-price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-color);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

/* Why Choose Us Section */
#why-us {
  background-color: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1rem;
}

.why-grid.image-section {
  gap: 1rem;
}

.why-item {
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: none;
}

.why-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--border-radius) * 1.2);
  box-shadow: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.why-img:hover {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.why-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.why-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Journey Section */
#journey {
  background-color: var(--bg-light);
}

.journey-frame {
  margin: 2rem auto 0;
  max-width: 100%;
  overflow: hidden;
}

.journey-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border-color) 0px, var(--border-color) 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

.journey-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 15px rgba(3, 126, 202, 0.3);
  border: 4px solid var(--text-white);
  transition: var(--transition-smooth);
}

.journey-step:hover .step-number {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
#gallery {
  background-color: var(--bg-light);
}

.gallery-frame {
  width: 100vw;
  max-width: none;
  margin: 2rem calc(50% - 50vw) 0;
  overflow: hidden;
  border-radius: 0;
}

.gallery-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Reviews Section */
#reviews {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: transparent;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.reviews-bg img {
  width: 90%;
  max-width: 1180px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: none;
  opacity: 0.98;
}

.reviews-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  background: transparent;
}

#reviews .section-header {
  text-align: right;
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  position: relative;
  padding-right: 2rem;
}

#reviews .section-header .section-subtitle,
#reviews .section-header .section-title {
  color: #ffffff;
}

#reviews .section-header .section-subtitle {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.5rem;
}

#reviews .section-header .section-title {
  font-size: 4.2rem;
  line-height: 1.05;
  margin-top: 0;
  margin-bottom: 1rem;
}

#reviews .section-header .section-desc {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.reviews-header .header-frame-white {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 6px;
  right: 0;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.reviews-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.reviews-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.reviews-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: calc(var(--border-radius) * 1.5);
  padding: 1.6rem;
  box-shadow: 0 18px 50px rgba(10, 40, 95, 0.14);
  border: none;
  position: relative;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: 0 8px 30px rgba(5, 30, 90, 0.15);
}

.review-name {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.review-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.review-dot.active {
  background: #ffffff;
}

@media (min-width: 769px) {
  .reviews-nav,
  .reviews-dots {
    display: none;
  }

  .review-card {
    display: block;
  }
}

/* Contact Section */
#contact {
  background-color: var(--bg-light);
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2.5rem 3rem;
}
.contact-form-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  order: 0;
}
.contact-form-title {
  margin: 0;
  text-align: center;
  font-size: 2rem;
  color: #0b66b3;
  font-weight: 700;
}
.contact-form-separator {
  width: 160px;
  height: auto;
}
.contact-info {
  flex: 0.9;
  order: 1;
}
.contact-divider {
  width: 1px;
  background: rgba(3, 126, 202, 0.15);
  border-radius: 2px;
  min-height: 360px;
  align-self: stretch;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--text-white);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(3,126,202,0.12);
  box-shadow: 0 6px 18px rgba(6,30,70,0.06);
  transition: var(--transition-smooth);
  cursor: pointer;
}
.contact-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(3, 126, 202, 0.12);
}
.contact-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  border: 1px solid rgba(3,126,202,0.12);
  transition: var(--transition-fast);
}
.contact-item:hover .contact-icon-wrapper {
  background-color: var(--accent-color);
  color: var(--text-white);
  border-color: var(--accent-color);
}


.contact-form-wrapper {
  flex: 1.6;
  order: 2;
  background: var(--text-white);
  padding: 2.2rem;
  border-radius: 14px;
  border: 4px solid #0b66b3;
  box-shadow: 0 18px 40px rgba(3,30,70,0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background-color: #f8fafc;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-color);
  background-color: var(--text-white);
  box-shadow: 0 0 0 3px rgba(3, 126, 202, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Footer Section */
footer {
  background-image: url("Footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  color: var(--text-white);
  padding: 5rem 4rem 2rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about .footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-about p {
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.footer-column-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-light);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  opacity: 0.8;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-light);
  transform: translateX(-5px);
}

.footer-help {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-help-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-help-item i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.footer-help-item span {
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-help-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-help-form input {
  flex: 1;
  min-width: 180px;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.footer-help-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.footer-help-form button {
  padding: 0.95rem 1.4rem;
  border-radius: 12px;
  background: #B4D8EF;
  color: #02354d;
  border: 1px solid rgba(255,255,255,0.45);
  cursor: pointer;
}

.footer-help-form button:hover {
  background: #8dc7df;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 0.95rem;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
  background-color: var(--accent-color);
  color: var(--text-white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.subscribe-form button:hover {
  background-color: var(--accent-light);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }
  
  .logo {
    height: 38px;
  }
  
  section {
    padding: 2.5rem 1.5rem;
  }
  
  /* Hero Section Mobile */
  .slide-region {
    font-size: 60px;
  }
  .slide-title {
    font-size: 1.2rem;
  }
  .slide-subtitle {
    font-size: 0.9rem;
  }
  .slide-info-card {
    padding: 0.8rem 1rem;
    max-width: 95%;
  }
  .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
  
  .slide {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
  
  .slider-dots {
    bottom: 1.5rem;
  }
  
  /* Section Headers Mobile */
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1.8rem;
  }
  .section-desc {
    font-size: 1rem;
  }
  
  /* Destinations Mosaic Mobile */
  .destinations-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
    gap: 10px;
  }
  .mosaic-europe,
  .mosaic-africa,
  .mosaic-asia,
  .mosaic-americas,
  .mosaic-me {
    grid-column: 1;
    grid-row: auto;
  }
  .mosaic-europe {
    grid-row: span 1;
  }
  
  /* Services Mobile */
  .services-grid {
    gap: 0.8rem;
  }
  .service-card {
    flex: 0 0 140px;
    max-width: 140px;
  }
  
  /* Packages Mobile */
  .package-card {
    flex: 0 0 280px;
  }
  .package-img-wrapper {
    height: 180px;
  }
  .package-content {
    padding: 1.5rem;
  }
  .package-title {
    font-size: 1.2rem;
  }
  
  /* Why Grid Mobile */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Reviews Mobile */
  #reviews .section-header .section-title {
    font-size: 2rem;
  }

  .reviews-bg img {
    width: calc(100% - 1rem);
    max-height: 320px;
    object-fit: cover;
  }

  .reviews-slider {
    gap: 0.5rem;
  }

  .reviews-grid {
    display: block;
    min-height: 260px;
  }

  .review-card {
    display: none;
  }

  .review-card.active {
    display: block;
  }

  .reviews-nav {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 0.85rem;
  }
  
  /* Contact Form Mobile */
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  /* Footer Mobile */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  footer {
    padding: 3rem 1.5rem 2rem 1.5rem;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  header {
    padding: 0.8rem 1rem;
  }
  
  .logo {
    height: 32px;
  }
  
  section {
    padding: 3rem 1rem;
  }
  
  /* Hero Small Mobile */
  .slide-region {
    font-size: 45px;
  }
  .slide-title {
    font-size: 1rem;
  }
  .slide-subtitle {
    font-size: 0.85rem;
  }
  .slide-info-card {
    padding: 0.6rem 0.8rem;
  }
  
  /* Section Headers Small Mobile */
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  /* Destinations Small Mobile */
  .destinations-mosaic {
    grid-template-rows: repeat(5, 160px);
  }
  
  /* Services Small Mobile */
  .service-card {
    flex: 0 0 120px;
    max-width: 120px;
  }
  
  /* Packages Small Mobile */
  .package-card {
    flex: 0 0 260px;
  }
  .package-img-wrapper {
    height: 160px;
  }
  
  /* Contact Form Small Mobile */
  .contact-form-wrapper {
    padding: 1rem;
  }
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* Large Desktop Screens */
@media (min-width: 1400px) {
  .section-title {
    font-size: 3rem;
  }
  .section-subtitle {
    font-size: 3rem;
  }
  .dest-main-title {
    font-size: 3rem;
  }
  .slide-region {
    font-size: 280px;
  }
  .slide-title {
    font-size: 2.5rem;
  }
  .slide-subtitle {
    font-size: 1.3rem;
  }
}

/* LTR Support for English */
[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}

[dir="ltr"] .nav-links a::after {
  right: auto;
  left: 0;
}

[dir="ltr"] .nav-links a:hover::after {
  width: 100%;
}

[dir="ltr"] .dest-title-row {
  flex-direction: row;
}

[dir="ltr"] .dest-title-icon {
  transform: rotate(-25deg);
}

[dir="ltr"] .dest-separator {
  background: none;
}

[dir="ltr"] .separator-line {
  background: repeating-linear-gradient(
    to right,
    var(--accent-color) 0px,
    var(--accent-color) 7px,
    transparent 7px,
    transparent 14px
  );
}

[dir="ltr"] .footer-column-title::after {
  right: auto;
  left: 0;
}

[dir="ltr"] .footer-links a:hover {
  transform: translateX(5px);
}

[dir="ltr"] .slider-dots {
  left: auto;
  right: 50%;
}

[dir="ltr"] .nav-links {
  right: auto;
  left: -100%;
}

[dir="ltr"] .nav-links.active {
  left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  header, section, footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  header.scrolled {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .slide-region {
    font-size: 160px;
  }
  .slide-title {
    font-size: 1.8rem;
  }
  .why-grid, .journey-timeline, .reviews-grid {
    gap: 2rem;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  #about, #contact {
    flex-direction: column;
    gap: 3rem;
  }
  .about-images {
    width: 100%;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .journey-timeline::before {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Mosaic responsive */
  .destinations-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 300px;
  }
  .mosaic-africa   { grid-column: 1; grid-row: 1; }
  .mosaic-asia     { grid-column: 2; grid-row: 1; }
  .mosaic-americas { grid-column: 1; grid-row: 2; }
  .mosaic-me-wrapper { grid-column: 2; grid-row: 2; }
  .mosaic-europe   { grid-column: 1 / 3; grid-row: 3; }
  .dest-main-title { font-size: 2rem; }
}

@media (max-width: 768px) {
  header {
    padding: 1.5rem 2rem;
  }
  .menu-toggle {
    display: block;
  }
  /* Mosaic stacked */
  #destinations { padding: 5rem 1.5rem; }
  .destinations-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px 200px 200px 200px;
    gap: 10px;
  }
  .mosaic-africa   { grid-column: 1; grid-row: 1; }
  .mosaic-asia     { grid-column: 1; grid-row: 2; }
  .mosaic-europe   { grid-column: 1; grid-row: 3; }
  .mosaic-americas { grid-column: 1; grid-row: 4; }
  .mosaic-me-wrapper { grid-column: 1; grid-row: 5; }
  .dest-main-title { font-size: 1.65rem; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 6rem 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
  }
  .nav-links.active {
    right: 0;
  }
  .slide-region {
    font-size: 90px;
  }
  .slide-title {
    font-size: 1.5rem;
  }
  .slide-subtitle {
    font-size: 1rem;
  }
  .slide-info-card {
    padding: 1rem 1.5rem;
    max-width: 90%;
    margin-bottom: 1.5rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Flip separator graphic in LTR (English) mode to match LTR reading direction */
html[dir="ltr"] img[src*="Frame top.png"],
html[dir="ltr"] .dest-separator-img,
html[dir="ltr"] .contact-form-separator,
html[dir="ltr"] .section-header img {
  transform: scaleX(-1) !important;
}

/* Custom Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.toast {
  background: rgba(15, 43, 79, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 320px;
  max-width: 450px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-success .toast-icon {
  color: #10b981; /* Emerald/Green */
}

.toast-error .toast-icon {
  color: #ef4444; /* Red */
}

.toast-content {
  flex-grow: 1;
  font-size: 0.95rem;
  font-weight: 500;
}

.toast-close {
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.toast-close:hover {
  opacity: 1;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* LTR layout alignment for toasts if language switches to English */
html[lang="en"] .toast-container {
  right: auto;
  left: 2rem;
}

/* Packages Slider and Trip Cards Mobile Optimization */
@media (max-width: 768px) {
  .slider-nav {
    display: none !important;
  }
  .packages-slider-wrapper {
    margin: 1rem 0;
  }
  .package-card {
    flex: 0 0 280px;
    max-width: 290px;
  }
  .package-img-wrapper {
    height: 190px;
  }
  .package-content {
    padding: 1.25rem;
  }
  .package-title {
    font-size: 1.2rem;
  }
  .whatsapp-sticky {
    bottom: 3.5rem !important;
    right: 1.5rem !important;
    width: 55px !important;
    height: 55px !important;
    font-size: 1.8rem !important;
  }
  html[lang="en"] .whatsapp-sticky {
    right: auto !important;
    left: 1.5rem !important;
  }
  .toast-container {
    bottom: 9.5rem !important;
  }
  html[lang="en"] .toast-container {
    right: auto !important;
    left: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  header {
    padding: 1rem 1.25rem !important;
  }
  header.scrolled {
    padding: 0.75rem 1.25rem !important;
  }
  .logo {
    height: 32px !important;
  }
  header.scrolled .logo {
    height: 28px !important;
  }
}

/* Floating WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* WhatsApp Green */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-sticky:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* LTR layout alignment for sticky whatsapp if language switches to English */
html[lang="en"] .whatsapp-sticky {
  right: auto;
  left: 2rem;
}
