* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Playfair Display', serif;
  overflow-x: hidden;
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo-img {
  transform: scale(2.3); /* increase or decrease as needed */
  transform-origin: center; /* keeps it centered */
}


body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Navigation Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #e67e22;
}

.has-dropdown::after {
    content: '▾';
    margin-left: 5px;
    font-size: 0.8em;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    will-change: transform, opacity;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.destinations {
    width: 800px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dropdown-region-group {
    display: flex;
    flex-direction: column;
}

.region-title {
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    color: #e67e22;
}

.region-list li {
    margin-bottom: 5px;
}

.region-list a {
    font-size: 0.9em;
    transition: color 0.2s;
}

.region-list a:hover {
    color: #e67e22;
}

.image-grid {
    width: 300px;
    padding: 10px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.dropdown-desc {
    font-size: 0.8em;
    color: #666;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-menu {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    font-weight: 500;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active {
    max-height: 500px;
    overflow-y: auto;
}

.mobile-dropdown-menu {
    padding: 0 20px 15px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.mobile-dropdown-region-group {
    margin-bottom: 20px;
}

.mobile-dropdown-region {
    margin-bottom: 15px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.mobile-dropdown-content {
    flex: 1;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    will-change: opacity;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}




/* Fix for mobile dropdown scrolling - The key fix */
.mobile-dropdown-region-group,
.mobile-dropdown-region,
.region-list {
    height: auto !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .destinations {
        width: 700px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .destinations {
        width: 100%;
        grid-template-columns: 1fr;
    }
    .nav-container .logo {
        margin-left: 15px;
    }
  
}

@media (max-width: 576px) {
    .mobile-drawer {
        width: 100%;
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Search Bar */
.search-bar {
  background-color: #2c3e50;
  padding: 25px 0;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s ease;
  will-change: transform;
  min-height: 30px;
}

.search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-box {
  display: flex;
  width: 100%;
  max-width: 800px;
  align-items: stretch;
}

.search-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
  outline: none;
    height: 45px;
      box-sizing: border-box;
}

.search-button {
  background-color: #e67e22;
    height: 45px; 
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
    font-family: 'Playfair Display', serif;
}
.autocomplete {
  position: relative;
  display: inline-block;
  width: 100%;
}

.autocomplete-items {
   position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
}

.autocomplete-items div:hover {
  background-color: #f2f2f2;
}

.autocomplete-active {
  background-color: #5dade2 !important;
  color: #fff;
}

.search-button:hover { background-color: #d35400; }

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  z-index: 1001;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  letter-spacing: 0.5px;
  max-width: 95%; 
  margin-left: auto;
  margin-right: auto;
  word-spacing: 2px;
  animation: fadeSlideUp 0.8s ease-out forwards;
}
.hero-content h1 strong {
  color: deepskyblue;
  text-shadow: 0 0 8px rgba(0,191,255,0.6);
  margin: 0 4px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  height: auto;
  opacity: 1;
  z-index: 1;
  filter: brightness(1.5) contrast(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
  margin-top: -50px;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 70px;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(0,191,255,0.6));
}

.hero-title {
  color: deepskyblue;
  margin: 0;
  text-shadow: 0 0 8px rgba(0,191,255,0.6);
    font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.hero-content p {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #f0f0f0;
  margin-bottom: 40px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
}

.hero-content p {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-brand h3 {
  color: deepskyblue;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0,191,255,0.6);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid deepskyblue;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  min-height: 20px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.explore-btn {
  background-color: deepskyblue;
  border-color: deepskyblue;
}

.plan-btn {
  background-color: transparent;
  color: whitesmoke;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 191, 255, 0.3);
}

.explore-btn:hover {
  background-color: #00b7eb;
  border-color: #00b7eb;
}

.plan-btn:hover {
  background-color: deepskyblue;
  color: white;
}

/* Common Section Styles */
.tour-section,
.destinations-section,
.special-offers-section,
.showcase-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
  text-align: center;
}

.destinations-section {
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.special-offers-section { background: #f9f9f9; }
.showcase-section { background: #fff; }

/* Section Headings */
.section-title,
.showcase-heading,
.special-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: #1c1c1c;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  animation: fadeSlideUp 0.8s ease-out forwards;
}

.special-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.showcase-heading {
  font-size: 28px;
  margin-bottom: 28px;
  color: #222;
}

.section-title::after,
.showcase-heading::after,
.special-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #ffb347, #ffcc33);
  margin: 0.6rem auto 0;
  border-radius: 3px;
}

/* Subtitles */
.section-subtitle,
.showcase-section p,
.special-offers-section p {
  font-family: 'Playfair Display', serif;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  text-align: center;
  margin: 0 auto 2rem;
  opacity: 0.9;
  animation: fadeSlideUp 1s ease-out forwards;
}

/* Card Grid Layouts */
.tour-slider,
.special-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.destination-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 380px;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #333;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.rating i {
  color: #FFD700;
  font-size: 0.95rem;
}

.card-content p {
  color: #555;
  font-size: 0.7rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Card Header with Flag and Badge */
.card-image {
  position: relative;
}

.card-header {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.country-flag {
  font-size: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

.popular-badge {
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(211, 84, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  line-height: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #eee;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: #28a745;
  flex-shrink: 0;
}

.book-btn {
  background-color: #ff7b00;
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 80px;
  font-weight: 500;
}

.book-btn:hover { background-color: #e46f00; }

/* Destination Slider */
.dest-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scroll-padding: 5%;
}

.dest-slider::-webkit-scrollbar { display: none; }

.dest-slider .destination-card {
  flex: 0 0 calc(25% - 20px);
  scroll-snap-align: start;
}

/* Slider Arrows */
.slide-left,
.slide-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: orange;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  padding: 0 10px;
}

.slide-left:hover,
.slide-right:hover {
  color: #00c4ff;
  transform: translateY(-50%) scale(1.1);
}

.slide-left { left: 15px; }
.slide-right { right: 15px; }

/* Special Offers Cards */
.special-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.special-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.special-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  color: #fff;
  text-align: left;
}

.special-tag {
  background-color: #ff7f50;
  border: none;
  color: white;
  font-size: 0.8rem;
  padding: 5px 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.special-tag:hover { background-color: #ff5722; }

.special-overlay h3 {
  font-size: 1.3rem;
  margin: 5px 0;
  font-weight: 600;
}

.special-category {
  font-size: 0.9rem;
  margin: 5px 0 10px;
  color: #ddd;
}

.special-rating i {
  color: gold;
  margin-right: 3px;
  font-size: 1rem;
}

/* Showcase Section */
.showcase-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  align-items: start;
}

.showcase-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-large {
  height: calc(var(--cell-h, 180px) * 2 + 20px);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.showcase-left-row {
  display: flex;
  gap: 20px;
}

.showcase-small {
  flex: 1 1 0%;
  height: var(--cell-h, 180px);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.showcase-right .right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: var(--cell-h, 180px);
  gap: 20px;
}

.right-card {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.showcase-text {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.62), rgba(0,0,0,0.12));
  color: #fff;
  box-sizing: border-box;
}

.showcase-text h3 {
  margin: 0 0 6px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: orange;
}

.showcase-text p {
  margin: 0;
  font-size: 16px;
  opacity: 0.95;
  color: white;
}

.showcase-large:hover,
.showcase-small:hover,
.right-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 22, 35, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

/* Reviews Section */
.safiri-review-section {
  background: linear-gradient(to bottom right, #e0f3ff, #ffffff);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
    font-family: 'Playfair Display', serif;
}

.safiri-review-title {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 10px;
  font-weight: 600;
}

.safiri-review-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.safiri-review-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.safiri-review-track {
  display: flex;
  gap: 25px;
  animation: safiriScroll 30s linear infinite;
}

.safiri-review-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 350px;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s ease;
}

.safiri-review-card:hover { transform: translateY(-6px); }

.safiri-review-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0077b6;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0, 119, 182, 0.3);
}

.safiri-review-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.safiri-review-user { text-align: center; }

.safiri-review-user h4 {
  margin: 0;
  font-size: 1rem;
  color: #0077b6;
  font-weight: 600;
}

.safiri-stars {
  color: #f5b301;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* Footer */
footer {
  background-color: black;
  color: white;
  padding: 50px 20px;
    font-family: 'Playfair Display', serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.footer-column ul { list-style: none; }

.footer-column ul li { margin-bottom: 10px; }

.footer-column a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover { color: #e67e22; }

.contact-info { margin-bottom: 20px; }

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #e67e22;
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes safiriScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Design */


@media (max-width: 1200px) {
  .dropdown-menu.destinations,
  .tour-slider,
  .special-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .dropdown-menu.destinations { width: 700px; }
}

@media (max-width: 1024px) {
  .tour-slider,
  .special-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dest-slider .destination-card { flex: 0 0 calc(50% - 15px); }
  
  .safiri-review-card { width: 300px; }
  .safiri-review-photo { width: 80px; height: 80px; }
  .safiri-review-track { animation-duration: 25s; }
}

@media screen and (max-width: 768px) {
  .navbar { position: relative; }
  .search-bar { position: relative; padding: 10px 0; }
  body { padding-top: 0; }

  .hamburger { display: block; }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    background-color: white;
    width: 80%;
    height: 100vh;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 999;
    overflow-y: auto;
    padding-top: 70px;
  }

  .nav-menu.active { left: 0; }

  .nav-item { margin: 0; width: 100%; }

  .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  


  @media screen and (max-width: 768px) {
  /* ... existing code ... */

  /* Improved mobile dropdown arrows */
  .nav-link.has-dropdown::after { 
    content: '▶'; 
    float: right;
    margin-left: 10px;
    transition: transform 0.3s ease; 
  }
  
  .nav-item.active .nav-link.has-dropdown::after { 
    content: '▼'; 
  }

  /* Improved mobile dropdown styling */
  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 !important;
    display: block !important; /* Override the display: none */
  }
  
  .nav-item.active .dropdown-menu {
    max-height: 400px;
    padding: 15px !important;
    overflow-y: auto;
  }

  .dropdown-menu.destinations {
    background: #f8f9fa !important;
    border-left: 3px solid #e67e22;
    margin-top: 5px;
  }

  /* ... rest of your existing mobile styles ... */
}

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f9f9f9;
    display: none;
    min-width: 100%;
    padding: 10px 20px;
    border-radius: 0;
  }

  .dropdown-menu.destinations {
    display: block !important;
    grid-template-columns: none !important;
    width: 100% !important;
    padding: 15px !important;
  }

  .dropdown-region { margin-bottom: 20px; }
  .region-title { font-size: 16px !important; margin-bottom: 15px !important; padding-bottom: 10px !important; }
  .region-list { display: block !important; }
  .region-list li { margin-bottom: 10px !important; }
  .region-list a { font-size: 14px !important; padding: 8px 0 !important; width: 100% !important; }

  .dropdown-menu.image-grid,
  .dropdown-menu.image-grid.full { grid-template-columns: 1fr; }

  .nav-item.active .dropdown-menu { display: block; }
  .dropdown-item { padding: 12px 0; border-bottom: 1px solid #eee; }
  .dropdown-item:last-child { border-bottom: none; }

  /* Hero adjustments */
  .hero {
    padding-top: 40px;
    min-height: 70vh !important;
  }

  .hero-buttons { flex-direction: row; gap: 15px; }
  .hero-btn {
    width: auto;
    max-width: none;
    padding: 12px 24px;
    font-size: 1rem;
  }

  /* Grid layouts */
  .tour-slider {
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 16px;
    padding-bottom: 10px;
  }

  .destination-card { min-width: 90%; flex: 0 0 calc(25% - 20px); scroll-snap-align: start; }
  .special-grid { grid-template-columns: 1fr; }
  .special-card { height: 260px; }

  /* Showcase grid */
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-left { order: 0; }
  .showcase-right { order: 1; }
  :root { --cell-h: 180px; }
  .showcase-large { height: calc(var(--cell-h) * 2 + 20px); }

  /* Slider arrows */
  .slide-left,
  .slide-right {
   font-size: 1.8rem; 
   color: orange;
  }

  /* Reviews */
  .safiri-review-card { width: 260px; }
  .safiri-review-photo { width: 75px; height: 75px; }
  .safiri-review-track { animation-duration: 20s; }
  .safiri-review-title { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .hero p{top: 30px;
    opacity: 1;}
  .hero-logo { width: 50px; }
  .hero-title { font-size: 15px; }
  .hero-header { margin-top: 20px; }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  :root { --cell-h: 160px; }
  .showcase-large { height: calc(var(--cell-h) * 2 + 16px); }
  .showcase-small,
  .right-card { height: var(--cell-h); }
  .showcase-left-row { gap: 12px; flex-direction: column; }
  .showcase-text h3 { font-size: 20px; }
  .showcase-text p { font-size: 14px; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 20px; }
  
  .hero {
    padding-top: 120px;
    min-height: 60vh !important;
    margin-top: 0px;
    display: flex;
  justify-content: flex-end;
  flex-direction: column;

  }
 .hero p{
opacity: 1; 
margin-bottom: 10px;
 }
   .special-offers-section p{
    font-size: 13px;
  }
  .hero-content {
    margin-bottom: 10px;
    margin-top: -20px;
  }
  .showcase-section p{
    font-size: 13px;
      font-family: 'Playfair Display', serif;
  }
  .hero p { 
    font-size: 13px;
      font-family: 'Playfair Display', serif;
    bottom: 10px;
      position: relative;
  top: 20px;
   }
  
  .hero-buttons { 
    gap: 10px;
    top: 20px;
   }
  .hero-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    width: auto !important;
    max-width: none !important;
    flex: 1;
    min-width: 70px;
    font-size: 10px;
    min-height: 40px;
  }

  .search-input { padding: 10px 12px; }
  .search-button { padding: 0 12px; min-width: 60px; }

  .destinations-section { padding: 60px 4%; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 13px; }
  .cards-wrapper { gap: 15px; }
  .card-footer { padding: 10px 15px; }
  .book-btn { padding: 8px 14px; font-size: 0.9rem; min-width: 90px; }

  .safiri-review-card {
    width: 230px;
    padding: 20px;
  }
  .safiri-review-photo { width: 70px; height: 70px; }
  .safiri-review-track { animation-duration: 15s; }
}

@media (max-width: 360px) {
  .card-footer { flex-wrap: nowrap; gap: 8px; }
  .book-btn { min-width: 85px; padding: 8px 12px; font-size: 0.85rem; }
  .price { font-size: 1rem; }
}

@media screen and (max-width: 400px) {
  .search-bar {
    padding: 10px 0;
  }
  
  .search-container {
    padding: 0 10px;
  }
  
  .search-box {
    flex-direction: row;
    gap: 5px;
    max-width: 100%;
  }
  
  .search-input {
    height: 36px;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px 0 0 4px;
    flex: 1;
    min-width: 0;
  }
  
  .search-button {
    height: 36px;
    padding: 0 12px;
    border-radius: 0 4px 4px 0;
    font-size: 12px;
    min-width: 60px;
    white-space: nowrap;
  }
  
  .autocomplete {
    width: 100%;
  }
  
  .autocomplete-items {
    font-size: 12px;
  }
  
  .autocomplete-items div {
    padding: 6px 8px;
    font-size: 12px;
  }
}
   .latest-stories-slider {
      padding: 40px 20px; /* Reduced side padding */
      width: 100%;
      box-sizing: border-box; /* This includes padding in the width calculation */
    }

    .slider-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
    }

    .slider-title {
      font-size: 2.6rem;
        font-family: 'Playfair Display', serif;
      font-weight: 800;
    }

    .slider-arrows {
      display: flex;
      gap: 10px;
    }

    .slider-btn {
      background: white;
      border: 1px solid #ccc;
      width: 38px;
      height: 38px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 18px;
      transition: 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .slider-btn:hover {
      background: black;
      color: white;
      border-color: black;
    }

    /* Slider Track */
    .slider-wrapper {
      overflow: hidden;
    }

    .slider-track {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .slider-track::-webkit-scrollbar {
      display: none;
    }

    /* Card styling */
    .slide {
      min-width: 290px;  /* ✅ 4 fit on desktop */
      max-width: 290px;
      flex-shrink: 0;
    }

    .offer-img {
      height: 210px;
      background-size: cover;
      background-position: center;
      border-radius: 6px; /* ✅ Rectangular corners */
    }
    .offer-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.offer-img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

    .date {
      display: block;
      margin: 10px 0 3px;
      font-size: 12px;
      color: #777;
      letter-spacing: 1px;
    }

    .slide h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 6px;
        font-family: 'Playfair Display', serif;
    }

    .slide p {
      font-size: 14px;
      color: #444;
      margin-bottom: 10px;
        font-family: 'Playfair Display', serif;
    }

    /* ✅ BUTTON STYLE */
    .read-btn {
      display: inline-block;
      background:  #000080;
      color: white;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 13px;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .read-btn:hover {
      background: #333;
    }

    /* ✅ Tablet */
    @media (max-width: 900px) {
      .slide {
        min-width: 45%;
      }
    }

    /* ✅ Mobile */
    @media (max-width: 650px) {
      .latest-stories-slider {
        padding: 20px;
      }

      .slide {
        min-width: 80%;
      }

      .slider-btn {
        display: flex !important;
      }

      .slider-arrows.mobile-visible {
        display: flex;
      }
      .slider-title{
        font-size: 20px;
      }
    }


  :root {
    --twp-accent: #bfa14a;
    --twp-dark: #111;
  }

  .twp-slider {
    padding: 40px 20px 60px;
    position: relative;
  }

  .twp-title {
    text-align: left;
    font-size: 35px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    margin-left: 10px;
  }

  .twp-title span {
    color: orange;
  }

  .twp-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: -38px;
  }

  .twp-btn {
    background: white;
    border: 1px solid #ccc;
    font-family: 'Playfair Display', serif;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease;
  }

  .twp-btn:hover {
    background: var(--twp-accent);
    color: white;
    border-color: var(--twp-accent);
  }

  .twp-wrapper {
    overflow: hidden;
  }

  .twp-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
  }

  .twp-track::-webkit-scrollbar {
    display: none;
  }

  .twp-card {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .twp-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-radius: 4px;
  }

  .twp-card img:hover {
    transform: scale(1.04);
  }

  .twp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--twp-dark);
    margin: 12px 0 6px;
    text-align: left;
    position: relative;
  }

  .twp-card h3::before {
    content: attr(data-subtitle);
    font-family: 'Playfair Display', serif;
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
    font-weight: 500;
  }

  .twp-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 6px;
    text-align: left;
    font-family: 'Playfair Display', serif;
  }

  .twp-price {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 6px 0 10px;
    text-align: left;
    align-self: flex-start;
  }

  .twp-read {
    display: inline-block;
    padding: 10px 20px;
    background:  #000080;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 0;
    align-self: flex-start;
  }

  .twp-read:hover {
    background: #a48c3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  }

  @media (max-width: 1200px) {
    .twp-card {
      min-width: 240px;
      max-width: 260px;
    }
  }

  @media (max-width: 900px) {
    .twp-card {
      min-width: 45%;
    }
  }

  @media (max-width: 650px) {
    .twp-card {
      min-width: 80%;
    }
    .twp-title {
      font-size: 20px;
    }
  }