:root {
  --primary: #FF4E00;
  --primary-hover: #E04400;
  --secondary: #0A1128;
  --bg-color: #F4F7F6;
  --surface: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --accent: #10B981;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -5px rgba(10, 17, 40, 0.08);
  --shadow-hover: 0 25px 50px -12px rgba(10, 17, 40, 0.15);
  
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -1px;
}
.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}
.nav-links a:not(.btn-call-nav):hover { color: var(--primary); }

.btn-call-nav {
  background: var(--primary);
  color: var(--surface) !important;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 78, 0, 0.3);
}
.btn-call-nav:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 78, 0, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  margin-top: 80px; /* Offset for navbar */
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -2;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 8s linear;
}
.hero-bg.active {
  opacity: 1;
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,17,40,0.6) 0%, rgba(10,17,40,0.2) 100%);
  z-index: -1;
}
.hero-content {
  text-align: center;
  color: var(--surface);
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}
.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Search Box */
.search-wrapper { margin-top: -40px; position: relative; z-index: 10; padding: 0 5%; }
.search-box {
  background: var(--surface);
  padding: 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-hover);
  max-width: 1000px;
  margin: 0 auto;
}
.search-field {
  display: flex;
  align-items: center;
  padding: 12px 25px;
  flex: 1;
  border-right: 1px solid #E2E8F0;
  width: 100%;
}
.search-field:last-of-type { border-right: none; }
.search-icon { color: var(--primary); font-size: 1.5rem; margin-right: 15px; }
.search-field label { display: block; font-size: 0.85rem; font-weight: 800; color: var(--secondary); text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.5px; }
.search-field input, .search-field select { 
  border: none; 
  outline: none; 
  font-size: 1.15rem; 
  width: 100%; 
  color: var(--secondary); 
  font-family: var(--font-body); 
  font-weight: 500; 
  cursor: pointer; 
  background: transparent;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-field input::placeholder {
  color: #94A3B8;
}
.search-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E293B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.2em;
  padding-right: 2rem;
}
.btn-search {
  background: var(--primary);
  color: var(--surface);
  border: none;
  height: 65px;
  padding: 0 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 78, 0, 0.3);
  transition: all 0.3s ease;
  margin-left: 10px;
  flex-shrink: 0;
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255, 78, 0, 0.4); }

/* Premium Destination Slider */
.dest-slider-container {
  padding: 3rem 5% 0;
  position: relative;
}
.dest-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.dest-slider-title {
  font-size: 1.5rem;
  color: var(--secondary);
  font-family: var(--font-heading);
}
.slider-controls {
  display: flex;
  gap: 10px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.icon-carousel {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 1rem 5px 2rem 5px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.icon-carousel::-webkit-scrollbar { display: none; }
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  min-width: 80px;
  position: relative;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}
.icon-item:hover { transform: translateY(-5px); }
.icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}
.icon-item:hover .icon-circle, .icon-item.active .icon-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--surface);
  box-shadow: 0 10px 20px rgba(255, 78, 0, 0.25);
  transform: scale(1.05);
}
.icon-item span { font-size: 0.9rem; font-weight: 700; color: var(--secondary); text-align: center; }
.trending-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: linear-gradient(135deg, #F59E0B, #EA580C);
  color: #fff;
  font-size: 0.55rem;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
  z-index: 2;
  border: 2px solid var(--surface);
}

/* Sections */
.section { padding: 5rem 5%; }
.bg-light { background-color: #F8FAFC; border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block;
  background: rgba(255, 78, 0, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.section-title { font-size: 2.8rem; color: var(--secondary); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* Packages Slider for Explore All */
.packages-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 10px 10px 40px;
  margin: 0 -10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.packages-slider::-webkit-scrollbar {
  display: none;
}
.packages-slider {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
.packages-slider .pkg-card {
  min-width: 360px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .packages-slider .pkg-card { min-width: 280px; }
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
}

.pkg-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
.pkg-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.pkg-img-wrap { height: 260px; overflow: hidden; position: relative; }
.pkg-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.pkg-card:hover .pkg-img { transform: scale(1.08); }

.pkg-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--surface);
  color: var(--secondary);
  padding: 6px 15px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pkg-body { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.pkg-loc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; font-weight: 600; }
.pkg-title { font-size: 1.4rem; color: var(--secondary); margin-bottom: 1.2rem; line-height: 1.4; font-weight: 800; }

.pkg-meta { display: flex; justify-content: space-between; margin-bottom: 1.5rem; color: var(--text-main); font-size: 0.95rem; font-weight: 600; }
.pkg-meta span { display: flex; align-items: center; gap: 6px; }
.pkg-meta i { color: var(--primary); }

.pkg-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #F1F5F9;
}

.pkg-price-wrap { display: flex; flex-direction: column; }
.pkg-price-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }
.pkg-price { font-size: 1.6rem; font-weight: 800; color: var(--secondary); }

/* The new "Request a Call" Button on packages */
.btn-request-call {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-request-call:hover {
  background: var(--primary);
  color: var(--surface);
  box-shadow: 0 8px 20px rgba(255, 78, 0, 0.3);
}

/* Tourism Board Alliances */
.alliances-section {
  background: var(--surface);
  padding: 4rem 5%;
  text-align: center;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.alliances-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 3rem;
}
.alliance-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.6;
  transition: all 0.4s ease;
  cursor: pointer;
}
.alliance-logo:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.alliance-logo span {
  font-weight: 800;
  font-size: 1rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Handpicked Collections */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.collection-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.collection-card:hover img {
  transform: scale(1.1);
}
.collection-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  pointer-events: none;
}
.collection-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 5px;
  transform: translateZ(30px);
}
.collection-overlay p {
  color: #E2E8F0;
  font-size: 0.9rem;
}

/* Why Choose Us (USPs) */
.usp-section {
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}
.usp-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.usp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7); /* Dark overlay */
  z-index: 2;
}
.usp-content {
  position: relative;
  z-index: 3;
}
.usp-content .section-title { color: #fff; }
.usp-content .section-subtitle { color: rgba(255,255,255,0.8); }
.usp-content .section-badge { 
  background: rgba(255,255,255,0.15); 
  color: #fff; 
  border: 1px solid rgba(255,255,255,0.3); 
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.usp-item {
  background: var(--surface);
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.usp-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: rgba(255, 78, 0, 0.3);
}
.usp-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,78,0,0.1) 0%, rgba(255,78,0,0.05) 100%);
  color: var(--primary);
  font-size: 2.5rem;
  transition: all 0.4s ease;
}
.usp-item:hover .usp-icon-wrapper {
  background: var(--primary);
  color: var(--surface);
  transform: scale(1.1) rotate(5deg);
}
.usp-item h4 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-family: var(--font-heading);
}
.usp-item p {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Reviews */
.reviews-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
  min-width: 350px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.review-stars {
  color: #F59E0B;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.review-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.review-user h5 {
  color: var(--secondary);
  margin-bottom: 3px;
  font-size: 1rem;
}
.review-user span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.footer { background: var(--secondary); color: var(--surface); padding: 5rem 5% 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-desc { color: #94A3B8; line-height: 1.8; margin-top: 1rem; }
.footer-title { font-size: 1.2rem; margin-bottom: 1.8rem; color: var(--surface); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1.2rem; }
.footer-links a { color: #94A3B8; transition: all 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

/* Responsive */
@media (max-width: 1200px) {
  .packages-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}
@media (max-width: 992px) {
  .search-box { flex-direction: column; border-radius: 20px; padding: 20px; gap: 15px; }
  .search-field { width: 100%; border-right: none; border-bottom: 1px solid #E2E8F0; padding: 15px 10px; }
  .search-field:last-of-type { border-bottom: none; }
  .btn-search { width: 100%; border-radius: 50px; margin-left: 0; margin-top: 10px; height: 60px; }
  .hero-title { font-size: 3.5rem; }
  .collections-grid, .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links a:not(.btn-call-nav) { display: none; }
  .mobile-menu-btn { display: inline-block; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .collections-grid, .usp-grid, .packages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .section { padding: 3rem 5%; }
  .section-title { font-size: 1.8rem; text-align: center; }
  .section-subtitle { text-align: center; font-size: 1rem; }
  .section-header { margin-bottom: 2rem; }
  .logo { font-size: 1.4rem; }
  .btn-call-nav { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .hero { margin-top: 70px; height: auto; padding: 6rem 0 5rem; border-radius: 0 0 20px 20px; }
  .search-wrapper { margin-top: -30px; }
  .alliances-grid { gap: 2rem; margin-top: 2rem; }
  .dest-slider-header { flex-direction: column; align-items: flex-start; gap: 15px; }
  .slider-controls { align-self: flex-end; }
  .review-card { min-width: 280px; padding: 20px; }
  .pkg-card { min-width: 100%; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .btn-call-nav { display: none !important; }
  .nav-links { gap: 1rem; }
  .search-box { padding: 15px; }
  .search-field { padding: 10px 5px; }
  .search-field input, .search-field select { font-size: 1rem; }
  .icon-circle { width: 60px; height: 60px; font-size: 1.5rem; }
  .icon-item { min-width: 70px; gap: 8px; }
  .usp-item { padding: 2rem 1.5rem; }
  .alliances-grid { gap: 1.5rem; }
  .collection-card { height: 250px; }
  .pkg-img-wrap { height: 200px; }
  .pkg-title { font-size: 1.2rem; }
}