@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffeecc;
  color: #333;
}

h1 {
  font-size: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  height: 100vh;;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-content .btn {
  background: #ff9900;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-content .btn:hover {
  background: #cc7a00;
}


.hero h2 {
  font-size: 40px;
}

.btn {
  background: #ff9900;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  border-radius: 5px;
}


.destinations {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

/* 👇 Paste this here 👇 */

.packages {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.package {
  background: #f9f9f9;
  border-radius: 30px;
  width: 400px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 🔄 Smooth animation */
}

.package:hover {
  transform: translateY(-10px); /* ⬆️ Slight move up */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* 💡 Deep shadow on hover */
}

.package img {
  width: 100%;
  border-radius: 10px;
}

.package .price {
  font-weight: bold;
  color: #ff6600;
  margin: 10px 0;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: #eaeaea;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards .card:hover {
  transform: translateY(-10px);
  box-shadow:
  0 0 10px rgba(128, 119, 104, 0.4),   /* soft orange outer glow */
  0 0 20px rgba(158, 125, 62, 0.3),
  0 10px 25px rgba(0, 0, 0, 0.15);   /* shadow for depth */
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.about,
.contact {
  padding: 40px 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
}

button {
  padding: 10px;
  background: #004466;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* === Clean Modern Footer with Mountain Style === */

/* MAIN FOOTER */

footer.footer-bottom {
  background-color: #004466;
  color: #ffffff;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #ffffff22; /* subtle top border */
}


.footer-main {
  background: url('https://images.unsplash.com/photo-1533243216203-8c08406d4583?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center bottom;
  background-size: cover;
  position: relative;
  padding: 100px 20px;
  color: #fff;
  z-index: 1;
}

/* DARK OVERLAY for readability */
.footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}




.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
  color: #fff;
}

.footer-column p,
.footer-column ul li {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

/* CONTACT SECTION */
.footer-contact {
  background: #ffffff;
  color: #000;
  text-align: center;
  padding: 30px 20px;
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 20px;
  margin: 0 10px;
  color: #004466;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #ff9900;
}

/* OFFICES */
.footer-offices {
  margin-top: 20px;
}

.footer-offices h4 {
  font-size: 16px;
  margin-top: 15px;
}

.footer-offices p,
.footer-offices a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

.footer-offices a:hover {
  text-decoration: underline;
}

/* BOTTOM LINE */
footer.footer-bottom {
  background-color: #004466;
  text-align: center;
  padding: 10px;
  color: white;
  font-size: 13px;
}



.footer-column,
.footer-contact,
.footer-offices {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.2s; }
.footer-column:nth-child(2) { animation-delay: 0.4s; }
.footer-column:nth-child(3) { animation-delay: 0.6s; }
.footer-column:nth-child(4) { animation-delay: 0.8s; }

/* 📱 Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    padding: 60px 15px;
    text-align: left;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 15px;
  }

  .footer-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-column p,
  .footer-column ul li {
    font-size: 13px;
  }

  .footer-contact {
    padding: 20px 15px;
    text-align: center;
  }

  .social-icons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
  }

  .social-icons i {
    font-size: 22px;
    margin: 0;
  }

  .footer-offices {
    margin-top: 30px;
  }

  .footer-offices h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-offices p,
  .footer-offices a {
    font-size: 13px;
  }

  footer.footer-bottom {
    padding: 12px 15px;
    font-size: 12px;
    text-align: center;
  }
}


.call-form {
  padding: 60px 20px;
  background: #fff3e0;
  display: flex;
  justify-content: center;
}

.form-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  background: #fff3e0;
  flex-wrap: wrap;
  justify-content: center;
}

.form-left img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
}

.form-right {
  background: white;
  border: 1px solid #ffae42;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  max-width: 400px;
  width: 100%;
}

.form-right h5 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.form-right .orange {
  color: #ff8500;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #888;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.input-group textarea {
  resize: vertical;
  height: 80px;
}

.form-right button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #ff8500, #ff6600);
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-right button:hover {
  background: linear-gradient(to right, #e67300, #cc5500);
}


.features {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.feature-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 50px;
  margin-bottom: 20px;
  filter: hue-rotate(90deg); /* turns icons green-ish */
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 30px;
  color: #333;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.nav-left {
  flex: 1;
}

.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 5px 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.nav-search input {
  border: none;
  background: transparent;
  padding: 10px 15px;
  width: 250px;
  outline: none;
  font-size: 16px;
  color: #000000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}

.nav-search input::placeholder {
  color: #000000;
}

.nav-search button {
  background: linear-gradient(45deg, #ff6f00, #ffa726);
  border: none;
  border-radius: 50%;
  padding: 10px;
  color: rgb(253, 253, 253);
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-search button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px #ff9800;
}


.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 10px 20px;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  flex-wrap: nowrap;
}

.phone {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.fa-user {
  font-size: 18px;
  color: #000;
  cursor: pointer;
}

/* === Hero Redesign === */

.hero {
  position: relative;
  height: 120vh;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 30px;
}

.hero-title {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #f1c823;
  margin-top: 15px;
  line-height: 1.4;
}

.hero-btn {
  margin-top: 30px;
  padding: 7px 21px;
  background-color: #ffc107;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 13px;
  text-decoration: none;
  transition: background 0.6s ease;
  line-height: 5.6;
}

.hero-btn:hover {
  background-color: #e0a800;
}

/* === Hero Section Animations === */

.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.animate:nth-child(1) {
  animation-delay: 0.2s;
}
.animate:nth-child(2) {
  animation-delay: 0.4s;
}
.animate:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.stats-section {
  background: #f9f9f9;
  padding: 70px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.stats-left {
  flex: 1 1 40%;
}

.stats-left h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.stats-left p {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.explore-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #69be5d;
  color: white;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.explore-btn:hover {
  background-color: #56a24c;
}

.stats-right {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-box {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box i {
  font-size: 28px;
  color: #69be5d;
  margin-bottom: 10px;
  display: block;
}

.stat-box h3 {
  color: #f68c1f;
  font-size: 28px;
  margin: 10px 0 5px;
}

.stat-box span {
  color: #555;
  font-size: 15px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 12px;
  right: 12px;
  background: #25d366;
  color: white;
  padding: 7px 15px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 1000%;
  height: 1000%;
  background: #fff; /* or any background color */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.package {
  position: relative;
}

.ribbon {
  position: absolute;
  top: 20px;
  left: -20px;
  background: #ff6600;
  color: white;
  padding: 5px 35px;
  transform: rotate(-45deg);
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

#preloader {
  background: linear-gradient(45deg, #ffcc80, #ffe0b2, #ffd699);
  background-size: 400% 400%;
  animation: gradientBG 8s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Slide-in and Glow Glass Sidebar */
.ultra-social-sidebar {
  position: fixed;
  top: 35%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 5px;
  z-index: 9999;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 15px 15px 0;
  animation: slideInLeft 1s ease-out;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.social {
  position: relative;
  color: white;
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Neon Glow on Hover */
.social:hover {
  transform: scale(1.2) rotate(6deg);
  box-shadow: 0 0 12px #fff, 0 0 25px currentColor, 0 0 45px currentColor;
}

/* Unique Platform Glow Colors */
.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fb { background: #1877f2; }
.yt { background: #ff0000; }

/* Tooltip Bubble */
.social::after {
  content: attr(data-label);
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 14px;
  background: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.social:hover::after {
  opacity: 1;
  left: 70px;
}

/* Slide-in Animation */
@keyframes slideInLeft {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceGlow {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  60% {
    transform: translateX(10px);
    opacity: 1;
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

.ultra-social-sidebar {
  animation: bounceGlow 1.2s ease-out;
}

.flight-animate-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  position: relative;
}

.flight-path-svg {
  width: 100%;
  height: 220px;
}

.stars {
  color: #ffc107;
  margin: 8px 0;
  font-size: 18px;
}

.package .stars {
  text-align: center;
}

.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}


.review-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  max-width: 350px;
  margin: auto;
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review-card h3 {
  margin: 0;
  font-size: 18px;
}

.review-card p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.packing-tool {
  padding: 60px 20px;
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  border-radius: 20px;
  max-width: 700px;
  margin: 50px auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.packing-tool h2 {
  font-size: 32px;
  color: #ff6f00;
}

.packing-tool .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.glass-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-group select {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
}

.generate-btn {
  background: linear-gradient(to right, #ff6f00, #ff8e53);
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.generate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff8e53aa;
}

.checklist-output {
  margin-top: 30px;
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  background: #fff8f1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.checklist-output h3 {
  margin-bottom: 15px;
  color: #ff6f00;
}

.checklist-output ul {
  padding-left: 20px;
}

.checklist-output li {
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
  font-size: 16px;
}

.checklist-output li::before {
  content: "✅";
  position: absolute;
  left: -20px;
}

.slideshow-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
}

.slideshow-modal.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.slideshow-content {
  width: 90%;
  height: 80%;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 1000;
}

.slideshow-modal {
position: fixed;
top: 0; left: 0;
width: 100vw;
 height: 100vh;
z-index: 9999;
background: rgba(0, 0, 0, 0.95);
display: none;
justify-content: center;
align-items: center;
}

    .slideshow-modal.active {
      display: flex;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    .slideshow-content {
      width: 90%;
      height: 80%;
      position: relative;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 20px;
      color: white;
      font-size: 32px;
      cursor: pointer;
      z-index: 1000;
    }

    .slideshow-swiper {
      height: 100%;
    }

    .slideshow-swiper .swiper-slide {
      background-size: cover;
      background-position: center;
      color: white;
      font-size: 2rem;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      position: relative;
      padding-bottom: 60px;
    }

    .slideshow-swiper .swiper-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

.flight-animate-wrapper {
  padding: 2rem 0;
  overflow-x: auto;
  text-align: center;
}

.flight-path-svg {
  width: 100%;
  max-width: 1000px;
  height: auto;
}


.navbar-heading h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 20px;
  background: linear-gradient(90deg, #ff6f00, #ffc107);
  background-clip: text;
  -webkit-background-clip: text; /* Chrome/Safari */
  color: transparent;
  -webkit-text-fill-color: transparent;
  color: #ff6f00
}

/* Then override for modern browsers */
@supports (-webkit-background-clip: text) {
  .navbar-heading h1 {
    background: linear-gradient(90deg, #ff6f00, #ffc107);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.highlight-link:hover {
  background: linear-gradient(to right, #ff9800, #ff6f00);
  box-shadow: 0 0 20px rgba(255, 111, 0, 0.6);
  transform: scale(1.05);
}

.filter-sidebar {
  flex: 0 0 270px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.filter-sidebar h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2c3e50;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #34495e;
  position: relative;
  padding-left: 20px;
}

.filter-group h4::before {
  content: "•";
  position: absolute;
  left: 0;
  color: orange;
  font-size: 20px;
  top: -1px;
}

.filter-group label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  color: #555;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.filter-group label:hover {
  color: #e67e22;
  font-weight: 500;
}

.price-range {
  display: flex;
  gap: 10px;
}

.price-range input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.price-range input:focus {
  border-color: #f39c12;
  outline: none;
  box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
}

.filter-sidebar button {
  background-color: #f39c12;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
  width: 100%;
}

.filter-sidebar button:hover {
  background-color: #e67e22;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ai-art-section1 {
  background: url('https://images.unsplash.com/photo-1587451152235-05466c2fc532?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
}

.ai-art-overlay1 {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 21px;
  padding:18px;
  max-width: 50000px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}


.nav-menu a {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.nav-menu a.active {
  background: linear-gradient(to right, #ff7b00, #ffb347);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 22px;
}

/* Wrapper to position pill nav inside header */
.pill-nav ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  justify-content: center;
  margin-top: 40px;
}

.pill-nav li a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pill-nav li.active a {
  background-color: #007bff; /* Blue active tab */
  color: #fff;
  font-weight: 600;
}

.pill-nav li a:hover {
  background-color: #1a1a1a;
}

/* ✅ Glassy White Header */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ✅ Plain Logo (No box or background) */
.logo img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* ✅ Navigation Menu */
.header-nav {
  display: flex;
  gap: 20px;
}
.header-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 10px;
  background: transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}
.header-nav a:hover,
.header-nav a.active {
  color: #FF6F00;
  border-bottom: 2px solid #FF6F00;
}

/* ✅ Contact Button */
.header-contact a {
  font-size: 0.95rem;
  color: #111;
  background: rgba(255,255,255,0.6);
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}
.header-contact a:hover {
  background: rgba(255,255,255,0.9);
  color: #FF6F00;
}

/* ✅ Hamburger Icon for Mobile */
.mobile-hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* ✅ Mobile Fullscreen Menu */
.mobile-fullmenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9998;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-fullmenu.active {
  display: flex;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-header h2 {
  font-size: 24px;
  font-weight: bold;
}
.menu-header .close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #222;
}
.menu-list {
  list-style: none;
  padding: 0;
}
.menu-list li {
  margin-bottom: 15px;
}
.menu-list a {
  font-size: 18px;
  color: #0a0a5a;
  text-decoration: none;
  font-weight: 500;
}
.menu-footer {
  font-size: 14px;
  color: #222;
}
.menu-footer .phone {
  color: #f5a623;
  font-weight: bold;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .glass-header {
    height: 55px;
    padding: 0 16px;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 100%;
  }

  .logo img {
    height: 30px;
  }

  .mobile-hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 20px;
    z-index: 9999;
  }

  .header-nav,
  .header-contact {
    display: none !important;
  }
}

.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  font-family: 'Poppins', sans-serif;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  flex-wrap: wrap;
}

.header-logo img {
  height: 40px;
}

.search-bar {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #cccccc;
  width: 200px;
}

.header-top .right a {
  margin-left: 20px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.phone-link {
  background: #FF6F00;
  color: white !important;
  padding: 6px 12px;
  border-radius: 5px;
}

.menu-list {
  display: flex;
  flex-direction: column; /* stack vertically */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
}

.menu-list li a {
  font-size: 18px;
  color: #0a0a5a;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  padding: 5px 0;
}

.menu-list li a.active {
  color: #f5a623;
  font-weight: bold;
}

.menu-list li a:hover {
  color: #FF6F00;
}

.header-bottom {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;  /* ❌ Removed solid color */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  border-bottom: none;
  padding: 9px 30px;
}

.navbar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 21px;
  margin: 0;
  padding: 0;
}

.navbar li a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  font-size: 14px;
  padding: 6px 12px;
  transition: color 0.3s ease;
  border-bottom: none !important; /* Remove default underline */
}

/* 👇 Common curved line on hover & active */
.navbar li a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 0%;
  height: 5px;
  border-bottom: 2px solid #ff6600;
  border-radius: 0 0 100px 100px;
  transition: width 0.3s ease;
}

/* 👇 When hovered or active, show the curve */
.navbar li a:hover,
.navbar li a.active {
  color: #ff6600;
  font-weight: bold;
}

.navbar li a:hover::after,
.navbar li a.active::after {
  width: 80%;
}



.logo-glass {
  background: #ffffff; /* ❌ This is solid white */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
   padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.logo-glass img {
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-glass:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .header-bottom {
    display: none;
  }
}

.menu-list a.active {
  color: #f5a623;
  font-weight: bold;
}

.menu-list a.active:hover {
  color: #f5a623;
}

/* === RESPONSIVE FOOTER STYLING === */

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}



.footer-contact .social-icons {
  margin-bottom: 15px;
}

.footer-contact .social-icons i {
  margin: 0 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-contact .social-icons i:hover {
  color: #1da1f2;
}

.footer-offices h4 {
  margin: 10px 0 5px;
  font-weight: bold;
}


/* === MOBILE OPTIMIZATION === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
    padding: 10px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-contact {
    font-size: 13px;
  }

  .footer-contact .social-icons {
    margin-top: 15px;
  }

  footer {
    font-size: 12px;
  }
}


/* === FULLSCREEN MOBILE MENU === */
.mobile-fullmenu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #ffffff;
  color: white;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  padding: 20px;
}

.mobile-fullmenu.active {
  transform: translateX(0%);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
}

.menu-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
}

.menu-list {
  list-style: none;
  padding: 20px 0;
}

.menu-list li {
  margin: 12px 0;
}

.menu-list a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.menu-list a:hover {
  color: #1da1f2;
}

.menu-footer {
  border-top: 1px solid white;
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.menu-footer .phone {
  font-weight: bold;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
}

.container {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.left-section,
.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-section {
  flex-direction: column;
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
}

.left-section h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.left-section .highlight {
  color: #f97316;
  font-weight: 700;
}

.subtext {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.tour-form {
  width: 100%;
  max-width: 360px;
}

.input-group {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
}

.input-group .icon {
  font-size: 1.9rem;
  color: #ffffff;
  margin-right: 10px;
  min-width: 24px;
  text-align: center;
}

.input-group input,
.input-group textarea {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 1rem;
}


.input-group textarea {
  resize: none;
  height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(to right, #f97316, #f59e0b);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: linear-gradient(to right, #fb923c, #facc15);
  transform: translateY(-2px);
}

.right-section {
  flex: 1;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.illustration-box {
  background-color: #e7f6ee;
  border-radius: 1rem;
  padding: 1rem;
  max-width: 100%;
  width: 420px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.illustration-box img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.illustration-box .caption {
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    margin: 20px;
    border-radius: 12px;
  }

  .left-section,
  .right-section {
    flex: none;
    width: 100%;
    padding: 1.5rem;
  }

  .left-section h1 {
    font-size: 1.5rem;
  }

  .subtext {
    font-size: 0.85rem;
  }

  .tour-form {
    max-width: 100%;
  }

  .input-group {
    padding: 0.65rem 1rem;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
  }

  .illustration-box {
    width: 100%;
    padding: 1rem;
  }

  .illustration-box .caption {
    font-size: 0.9rem;
  }
}

.callback-section {
  padding: 80px 20px;
  background: #fefcf8;
  display: flex;
  justify-content: center;
  align-items: center;
}


.callback-container {
  max-width: 1280px; /* Was probably 1000px or 1100px */
  width: 100%;
  min-height: 700px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: auto;
}


.callback-form {
  flex: 1;
  padding: 60px;
  background: linear-gradient(135deg, #e3e6e4, #f7ddce);
}


.callback-form h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.callback-form h2 span {
  color: #f97316;
}

.input-group {
  background: #f7f7f7;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.input-group:focus-within {
  border-color: #f97316;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.3);
}

.input-group .icon {
  color: #666;
  font-size: 1.2rem;
  margin-right: 10px;
}

.input-group input,
.input-group textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  width: 100%;
  resize: none;
}

.callback-btn {
  background: linear-gradient(to right, #f97316, #f59e0b);
  border: none;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.callback-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #fb923c, #facc15);
}

.callback-illustration {
  flex: 1.3; /* ✅ make right side bigger */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* ✅ push text to bottom */
  justify-content: center;
  background: #000;
  padding: 40px 20px;
  min-height: 100%;
}

.callback-illustration img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.callback-illustration p {
  display: none;
}




/* ====== Enhanced Mobile Responsive (Below 768px) ====== */
@media (max-width: 768px) {

  .container {
    flex-direction: column;
    margin: 20px;
    border-radius: 12px;
  }

  .left-section,
  .right-section {
    flex: none;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
  }

  .left-section h1 {
    font-size: 1.4rem;
  }

  .subtext {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .tour-form {
    max-width: 100%;
  }

  .input-group {
    padding: 0.65rem 1rem;
    margin-bottom: 1rem;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
  }

  .illustration-box {
    width: 100%;
    padding: 1rem;
  }

  .illustration-box .caption {
    font-size: 0.9rem;
  }

  /* ==== Callback Section ==== */
  .callback-section {
    padding: 40px 20px;
  }

  .callback-container {
    flex-direction: column;
    min-height: unset;
    border-radius: 16px;
  }

  .callback-form {
    padding: 30px 20px;
    width: 100%;
  }

  .callback-form h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .callback-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px;
  }

  .callback-illustration {
    min-height: 300px;
  }

  .callback-illustration p {
    font-size: 1rem;
    padding: 1rem;
    max-width: 90%;
  }

  .callback-illustration img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

}


.footer-contact .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px; /* was probably too big before */
}

.footer-contact .social-icons a {
  text-decoration: none;
  color: #003B5B;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;       /* optional: equal sizing */
  height: 40px;
}

.footer-contact .social-icons a:hover {
  color: #0077b5;
}
