* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: 'Courier New', monospace;
     
    }

   .hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    
}

.background {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: opacity 1s ease-in-out;
}

    .logo-fixed {
      position: fixed;
      top: 20px;
      left: 30px;
      height: 139px;
      z-index: 15;
    }

    .navbar {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: auto;
      padding: 20px 90px;
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      gap: 99px;
      border-radius: 12px;
      font-family: "Port Lligat Slab", serif;
      z-index: 10;
    }

    /* 🔽 Add this below your existing navbar CSS */

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* place below the Trips link */
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 15;
  flex-direction: column;
}

.dropdown-content a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
  display: flex;
}



    .nav-links a {
      color: #000;
      font-weight: 500;
      text-decoration: none;
    }

    .text {
      position: absolute;
      top: 18%;
      left: 50%;
      transform: translateX(-50%);
      font-size: 2.5em;
      color: black;
      white-space: nowrap;
      font-family: "Papyrus", fantasy;
      text-align: center;
      z-index: 5;
    }

    .contact-box {
      position: absolute;
      top: 82%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border-radius: 40px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 40px;
      box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
      width: 90%;
      max-width: 1200px;
      z-index: 5;
      font-family: "Port Lligat Slab", serif;
    }

    .get-in-touch-box {
      display: flex;
      align-items: center;
      background: #e0ebff;
      border-radius: 20px;
      padding: 10px 20px;
      margin-bottom: 30px;
      font-weight: bold;
      font-size: 1.1em;
    }

    .get-in-touch-box img {
      height: 30px;
      margin-right: 10px;
    }

    .form-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      width: 100%;
      gap: 20px;
    }

    .form-group {
      flex: 1 1 calc(50% - 20px);
      border: 1px solid #ccc;
      border-radius: 20px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .form-group img {
      height: 30px;
      border: 2px dashed #bbb;
      border-radius: 50%;
      padding: 5px;
      background:#d2dfff
    }

    .form-group input {
      border: none;
      outline: none;
      font-size: 1em;
      flex-grow: 1;
    }


    .port-lligat-slab-regular {
  font-family: "Port Lligat Slab", serif;
  font-weight: 400;
  font-style: normal;
}


.trips-section {
   position: relative;
    background: transparent;
    min-height: 100vh;
    padding: 60px 0 40px 0;
       overflow: hidden;
        
}
.trips-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 700px;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.trips-title,
.trips-list
 {
    position: relative;
    z-index: 1;
}
.trips-title {
   font-family: "Port Lligat Slab", serif;
    font-size: 2.2em;
    margin-left: 130px;
    margin-bottom: 30px;
    color: #dbd9d9;
}

.trips-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trip-card {
    background: #f3f3f3;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    width: 320px;
    padding: 18px 18px 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trip-image {
    width: 100%;
    height: 140px;
    background: #ccc;
    border-radius: 12px;
    margin-bottom: 12px;
}

.trip-info {
    width: 100%;
}

.trip-location {
    font-weight: bold;
    font-size: 1em;
    margin-right: 10px;
}

.trip-duration {
    float: right;
    font-size: 0.95em;
    color: #444;
}

.trip-desc {
    margin: 10px 0 6px 0;
    font-size: 1.1em;
}

.trip-price {
    font-size: 1em;
    color: #222;
}
.social-icons {
    display: flex;
    gap: 16px;
    margin-left: 18px;
    
}


.social-icons a {
  text-decoration: none;
}


.social-icons i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0ebff 40%, #b3c6ff 100%);
    color: #222;
    font-size: 1.4em;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    transition: 
        background 0.2s,
        color 0.2s,
        transform 0.18s,
        box-shadow 0.18s;
    cursor: pointer;
}

.social-icons i:hover {
    background: linear-gradient(135deg, #1a73e8 40%, #67c6ff 100%);
    color: #fff;
    transform: translateY(-4px) scale(1.08) rotate(-6deg);
    box-shadow: 0 6px 18px rgba(26, 115, 232, 0.18);}
.trip-image {
    width: 100%;
    height: 140px;
    background: #ccc;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
   

/* Hide extra cards by default */
.extra-card {
    display: none;
}

/* Show extra cards when .show-extra is on .trips-list */
.trips-list.show-extra .extra-card {
    display: flex;
}

/* Next button styling */
.next-cards-btn {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 8px #0002;
    font-size: 1.7em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.next-cards-btn:hover {
    background: #e0ebff;
}

/* Add this to your styles.css */
/* Trending Destinations Section */
.trending-section {
  background: #fff;
  padding: 60px 0 40px 0;
  width: 100vw;
  overflow-x: hidden;
  margin-top: 0px;
}
.trending-title {
  text-align: center;
  font-size: 2.5em;
  font-family: 'Port Lligat Slab', serif;
  font-weight: bold;
  margin-bottom: 24px;
  color: #222;
  position: relative;
}
.trending-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ffd600;
  margin: 12px auto 0 auto;
  border-radius: 2px;
}
.trending-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.trending-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trending-carousel::-webkit-scrollbar {
  display: none;
}
.trending-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  min-width: 300px;
  max-width: 320px;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.trending-card img {
  width: 100%;
  height: 75%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}
.trending-card-title {
  font-size: 2em;
  font-family: 'Port Lligat Slab', serif;
  color: #e67e22;
  text-align: center;
  background: #fff;
  width: 100%;
  padding: 18px 0 10px 0;
  border-radius: 0 0 24px 24px;
  font-weight: bold;
  letter-spacing: 1px;
}
.trending-card-title span {
  color: #222;
  font-size: 0.7em;
  font-weight: normal;
  display: block;
  margin-top: 4px;
}
.trending-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
}
.trending-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5em;
  color: #444;
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.trending-scroll-btn.left { left: -22px; }
.trending-scroll-btn.right { right: -22px; }
.trending-scroll-btn:hover {
  background: #e0ebff;
}
@media (max-width: 900px) {
  .trending-card {
    min-width: 220px;
    max-width: 240px;
    height: 320px;
  }
}

.trip-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* Why Unplanned Trips Section */
.why-unplanned-section {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 32px 24px 16px 24px;
  margin: 40px auto 24px auto;
  max-width: 900px;
  text-align: center;
}
.why-unplanned-section h2 {
  font-family: 'Port Lligat Slab', serif;
  font-size: 2rem;
  margin-bottom: 16px;
}
.why-unplanned-list {
  list-style: disc inside;
  color: #444;
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

/* Reviews Section */
.reviews-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 80px;
  background: #ededed;
  border-radius: 16px;
  padding: 32px 16px;
  margin: 0 auto 40px auto;
  max-width: 900px;
}
.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  margin-bottom: 16px;
}
.review-icon {
  font-size: 2.8rem;
  margin-bottom: 8px;
}
.review-icon.google { color: #ea4335; }
.review-icon.facebook { color: #1877f3; }

.review-rating {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: #222;
}
.stars {
  color: #fbc02d;
  margin-left: 6px;
  font-size: 1.1rem;
}
.review-label {
  font-size: 1.1rem;
  color: #444;
  margin-top: 2px;
}
/* ...existing code... */

/* Floating Call Icon Styles */
.floating-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-btn {
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background 0.3s;
}

.call-btn:hover {
  background: #128c7e;
}

.call-msg {
  font-family: 'Port Lligat Slab', serif;
  background: #fff;
  color: #222;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInMsg 2s infinite alternate;
  margin-left: 5px;
}

@keyframes fadeInMsg {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0.7;
    transform: translateY(5px);
  }
}

/* ...existing code... */

/* Media Queries - Responsive Design */

/* Small devices (phones, 600px and down) */
@media (max-width: 600px) {
  .navbar {
    padding: 12px 20px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .text {
    font-size: 1.4em;
    top: 10%;
    padding: 0 10px;
  }

  .contact-box {
    top: auto;
    bottom: 40px;
    padding: 20px;
    width: 95%;
  }

  .form-group {
    flex: 1 1 100%;
    padding: 12px;
  }

  .get-in-touch-box {
    font-size: 1em;
    padding: 8px 12px;
  }

  .logo-fixed {
    height: 90px;
    top: 10px;
    left: 10px;
  }

  .trips-title {
    margin-left: 20px;
    font-size: 1.5em;
  }

  .trip-card {
    width: 90%;
  }

  .trending-card {
    min-width: 220px;
    max-width: 240px;
    height: 320px;
  }

  .trending-card-title {
    font-size: 1.3em;
  }

  .floating-call {
    bottom: 20px;
    right: 20px;
  }

  .call-btn {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }

  .call-msg {
    font-size: 1rem;
  }
}

/* Medium devices (tablets, 600px to 900px) */
@media (max-width: 900px) {
  .navbar {
    gap: 40px;
    padding: 15px 40px;
  }

  .text {
    font-size: 2em;
    top: 14%;
  }

  .form-group {
    flex: 1 1 100%;
  }

  .trip-card {
    width: 260px;
  }

  .trips-title {
    margin-left: 40px;
    font-size: 1.8em;
  }

  .trending-carousel-wrapper {
    padding: 0 20px;
  }

  .trending-scroll-btn {
    display: none;
  }
}

/* Large devices (small desktops, 900px to 1200px) */
@media (max-width: 1200px) {
  .navbar {
    padding: 18px 60px;
    gap: 60px;
  }

  .contact-box {
    max-width: 90%;
  }

  .trip-card {
    width: 280px;
  }

  .trending-card {
    min-width: 260px;
    max-width: 280px;
  }

  .trending-title {
    font-size: 2em;
  }
}

  /* ...existing code... */
   .form-group {
    display: none !important;
  }

@media (max-width: 600px) {
  .form-group {
    display: none !important;
  }
   .navbar .dropdown,
  .navbar a#aboutUsLink {
    display: none !important;
  }

}

/* Show only one trip card at a time on mobile */
@media (max-width: 600px) {
  .trips-list {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 350px; /* adjust as needed */
  }
  .trip-card {
    min-width: 100%;
    flex-shrink: 0;
    transition: transform 0.4s;
    display: none;
  }
  .trip-card.active {
    display: block;
  }
  .next-cards-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px 14px;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
}

.trending-ccarousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: -119px;}

  .trending-card-link {
  display: inline-block;
}
.trending-card-link .trending-card {
  cursor: pointer;
}

/* Remove underline from trip section links */
#trips-section .trending-carousel a {
  text-decoration: none;
}