:root {
  --primary-color: #f7f7f7;
  --hover-color: #e0e0e0;
  --accent-color: #ffab00;
  --text-color: #1f0f68;
  --darker-orange: #c48200;
  --light-orange: #ffdf9e;
  --light-purple: #5b508f;
}

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

html {
  font-family: Poppins, "Segoe UI", sans-serif;
  color: var(--text-color);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--primary-color);
}

nav {
  background-color: var(--primary-color);
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid var(--text-color);
}

nav ul {
  list-style: none;
  display: flex;
}

nav .contactUs-li {
  margin-right: auto;
}

nav a.socials {
  width: 55px;
  fill: var(--text-color);
}

nav a.socials svg {
  fill: var(--text-color);
  width: 100%;
  height: auto;
}

nav li {
  display: flex;
}

.logo-simple {
  width: 90px;
  padding: 5px;
}

nav a {
  display: flex;
  text-decoration: none;
  color: var(--text-color);
  padding: 1em 1em;
  transition: background-color 150ms ease;
  align-items: center;
}

nav a:hover {
  background-color: var(--hover-color);
}

nav a.active-link {
  border-bottom: 3px solid var(--accent-color);
}

#open-sidebar-button {
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}

#close-sidebar-button {
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}

#small-screen-navbar {
  display: none;
  border-bottom: 1px solid var(--text-color);
}

#overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}

main img {
  max-width: 100%;
  height: auto;
}

.top-banner {
  background-image: url(Assets/mountains.jpg);
  min-height: 70vh;
  background-position: top center;
  background-size: cover;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-image: fill 1 linear-gradient(hsl(0 0% 0% / 0.3), hsl(0 0% 0% / 0.3));
}

.top-banner a {
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 12px 20px;
  font-weight: bold;
  margin-top: 1.5em;
}

.top-banner h1 {
  font-size: clamp(2rem, 4.5vw, 5rem);
  max-width: 90%;
  text-align: center;
}

.top-banner p {
  font-size: clamp(1.5rem, 2vw, 3rem);
  max-width: min(550px, 90%);
  text-align: center;
}

.mission {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: min(10%, 60px);
  padding-bottom: min(10%, 60px);
  gap: 10px;
}

.mission p {
  max-width: min(700px, 80%);
}

.all-itineraries {
  padding: min(10%, 60px) 10%;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

#diy-itinerary-text-home {
  margin-top: 20px;
  font-size: 1.2rem;
  text-align: center;
}

#diy-itinerary-button {
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
}

.itinerary-tabs {
  width: 100%;
  /* max-width: 700px; */
  background: var(--primary-color);
  padding: 15px 20px;
  border-radius: 20px;
}

.itinerary-tabs ul {
  list-style: none;
  display: flex;
  justify-content: left;
  gap: 50px;
}

.tabs a {
  text-decoration: none;
  color: var(--light-purple);
  text-wrap: nowrap;
}

.tabs a:hover {
  border-bottom: 3px solid var(--accent-color);
}

.wrapper-tab-content {
  position: relative;
}

.tab-content {
  position: absolute;
  visibility: hidden;
  padding: 10px 0 0 0;
  height: 0;
}

.content-visible {
  position: static;
  visibility: visible;
  height: auto;
}

.active-tab {
  color: var(--text-color) !important;
  border-bottom: 3px solid var(--accent-color);
}

.why-trine-trip {
  padding: min(10%, 60px) 10%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.why-trine-trip h1 {
  padding-bottom: 20px;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  gap: 30px;
  justify-content: center;
}

.reason {
  background-color: var(--accent-color);
  padding: 10px;
  border-radius: 15px;
  width: 300px;
}

.latest-youtube {
  padding: min(10%, 60px) 20%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------- DESTINATIONS PAGE CSS ------------------------- */

.destinations-banner {
  background-image: url(Assets/safdarjungTomb.jpg);
  min-height: 50vh;
  background-position: center center;
}

.destination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: min(10%, 60px) 20px min(10%, 60px) 20px;
  flex-wrap: wrap;
}

.reverse-wrap {
  flex-wrap: wrap-reverse !important;
}

.grey-background {
  background-color: var(--hover-color);
}

.carousel-text {
  width: 400px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.carousel-text a {
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
  margin-top: 0.35em;
  margin-right: auto;
}

.carousel {
  position: relative;
  width: 500px;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-slide {
  width: 500px;
  flex-shrink: 0;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.header-with-new-marker {
  display: flex;
  gap: 10px;
}

.header-with-new-marker path {
  fill: var(--accent-color);
}

.diy-destination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.diy-destination a {
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
  margin-top: 0.75em;
}

/* ------------------------- INDIVIDUAL DESTINATION PAGE CSS ------------------------- */

.himachal-banner {
  background-image: url(Assets/himachal1.jpg);
  min-height: 50vh;
  background-position: center center;
}

.breadcrumbs {
  position: absolute;
  left: 10%;
  top: 90px;
  background-color: var(--hover-color);
  border-radius: 10px;
  padding: 3px 10px;
  color: var(--text-color);
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

.breadcrumbs a {
  background-color: unset;
  font-weight: unset;
  padding: unset;
  color: var(--text-color);
}

.breadcrumbs p {
  font-size: unset;
  max-width: unset;
  font-weight: bold;
}

.itinerary-title a {
  text-decoration: none;
  color: var(--text-color);
}

.itinerary-title .breadcrumbs {
  background-color: unset;
  color: var(--text-color);
  top: 85px;
  padding-left: 0px;
}

.uttarakhand-banner {
  background-image: url(Assets/uttarakhand1.jpg);
  min-height: 50vh;
  background-position: center center;
}

.goa-banner {
  background-image: url(Assets/goa1.jpg);
  min-height: 50vh;
  background-position: center center;
}

.thailand-banner {
  background-image: url(Assets/thailand1.jpg);
  min-height: 50vh;
  background-position: center center;
}

.about p {
  max-width: unset;
  width: 80%;
}

.itineraries {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: min(10%, 60px) 10%;
  background-color: var(--hover-color);
}

.itineraries h1 {
  padding-bottom: 20px;
}

#diy-itinerary-text {
  margin-top: 30px;
  font-size: 1.2rem;
}

.itineraries a {
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
  margin-top: 0.75em;
}

.scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 1rem;
  width: 100%;
}

.itinerary-cards {
  display: flex;
  gap: 1rem;
  min-width: 100%;
}

.itinerary-cards.centered {
  width: 100%;
  justify-content: center;
}

.itinerary-card {
  flex: 0 0 auto;
  width: 280px;
  background-color: var(--primary-color);
  border: 3px solid #cccccc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

.itinerary-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.itinerary-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.itinerary-info h3 {
  margin: 0;
  font-size: 1.2rem;
}

.itinerary-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.itinerary-info a {
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
  margin-right: auto;
  margin-top: auto;
}

.discover-more-button {
  text-decoration: none;
  color: var(--text-color);
  align-self: center;
  transition: all 150ms ease;
}

.discover-more-button:hover {
  transform: translateY(-3px);
}

.discover-more-button h3 {
  width: 165px;
}

.scroll-wrapper::-webkit-scrollbar {
  height: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.map {
  width: 600px;
  height: 600px;
  max-width: 100%;
}

.map-content {
  padding: min(10%, 60px) 10%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.map-content h1 {
  padding-bottom: 10px;
}

.map-content h3 {
  padding-bottom: 20px;
}

.plan-trip {
  padding: min(10%, 60px) 10%;
  background: var(--hover-color);
  text-align: center;
}

.plan-trip h1 {
  padding-bottom: 10px;
}

.plan-trip #section-subtitle {
  padding-bottom: 20px;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.step {
  background: var(--primary-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: min(5%, 30px);
  max-width: 900px;
  width: 100%;
  text-align: left;
}

.step ul {
  margin-left: 1.5rem;
}

.step a {
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
  margin-top: 0.35em;
  margin-right: auto;
}

.last-step {
    display: flex;
    flex-direction: column;
}

.beach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 1rem;
}

.beach-card {
  background: var(--accent-color);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.beach-card:hover {
  transform: translateY(-5px);
}








/* ------------------------- ITINERARY PAGE CSS ------------------------- */

.itinerary-title h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.itinerary-title {
  padding: min(10%, 60px) 10% 20px 10%;
}

.itinerary-overview {
  padding: 0 10% min(10%, 60px) 10%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.itinerary-overview-text {
  padding-top: 20px;
}

.itinerary-overview-left {
  width: min(600px, 100%);
}

.itinerary-overview-left .carousel {
  width: 100%;
}

.itinerary-overview-left .carousel-slide {
  width: 100%;
}

.itinerary-overview-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.itinerary-overview-text ul {
  margin-left: 18px;
}

#group-discount {
  padding: 10px 30px;
  color: var(--primary-color);
  background-color: var(--text-color);
  border-radius: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.itinerary-overview-right {
  background-color: var(--accent-color);
  padding: 15px 30px;
  border-radius: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--primary-color);
}

.itinerary-overview-right a {
  text-decoration: none;
  color: var(--accent-color);
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  margin-top: 0.35em;
  margin-right: auto;
}

.pricing {
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-with-asterisk {
  display: flex;
}

.price-with-asterisk p {
  margin-top: 5px;
}

.price-disclaimer {
  padding-left: 5px;
  font-size: small;
}

.itinerary-details-and-included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, auto));
  padding: min(10%, 60px) 10%;
  gap: 60px;
  justify-content: space-between;
}

.add-ons-and-price {
  display: flex;
  padding: min(10%, 60px) 10%;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.itinerary-details {
  display: flex;
  flex-direction: column;
}

.itinerary-details h1 {
  padding-bottom: 10px;
}

.collapsible {
  background-color: var(--light-orange);
  color: var(--text-color);
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.active, .collapsible:hover {
  background-color: var(--accent-color);
}

.collapsible-content {
  padding: 0 18px;
  margin-top: 2px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: var(--primary-color);
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.collapsible-content ul {
  margin-left: 18px;
}

.collapsible:after {
  content: '+';
  font-size: 25px;
  color: var(--text-color) !important;
  float: right;
}

.active:after {
  content: '-';
}

.included {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 35%;
}

.included-item {
  display: flex;
  gap: 10px;
  align-items: start;
}

.included-item svg {
  min-width: 50px;
  fill: var(--accent-color);
}

.included ul {
  padding-left: 18px;
}

.add-ons {
  gap: 30px;
}





/* ------------------------- ABOUT PAGE CSS ------------------------- */

.about-us-banner {
  background-image: url(Assets/thailandSunset.jpg);
  min-height: 50vh;
  background-position: center center;
}

.about-section {
  padding: min(10%, 60px) 5%;
  display: flex;
  justify-content: center;
}

.about-content {
  max-width: 1000px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.about-section img {
  width: 600px;
  border-radius: 15px;
}

.about-text {
  width: 360px;
}

.about-text h1 {
  padding-bottom: 10px;
}



/* ------------------------- CONTACT US PAGE CSS ------------------------- */

.telephone-banner {
  background-image: url(Assets/valleyOfFlowers.jpg);
  min-height: 50vh;
  background-position: center center;
  border-image: fill 1 linear-gradient(hsl(0 0% 0% / 0.4), hsl(0 0% 0% / 0.4));
}

.telephone-banner p {
  font-size: clamp(1rem, 1.5vw, 2rem);
}

.contact-us {
  padding: min(10%, 60px) 0%;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.contact-us-left {
  width: 550px;
  padding: min(10%, 40px);
}

.contact-us-left svg {
  fill: var(--text-color);
}

.contact-us-left a {
  color: var(--text-color);
  display: inline-block;
  transition: all 150ms ease;
}

.contact-us-left a:hover {
  transform: translateY(-3px);
}

.contact-us-left p {
  margin-top: 0;
}

.contact-us-emails {
  display: flex;
  padding: 20px 0px 0px 20px;
}

.contact-us-emails svg {
  stroke: var(--text-color);
  stroke-width: 20;
}

.contact-us-emails-text {
  padding-left: 20px;
}

.contact-h4-padding-top {
  padding-top: 10px;
}

.contact-us-phone {
  display: flex;
  padding: 20px 0px 0px 20px;
}

.contact-us-phone svg {
  stroke: var(--text-color);
}

.contact-us-whatsapp {
  display: flex;
  padding: 20px 0px 0px 20px;
}

.contact-us-whatsapp-text {
  padding-left: 20px;
}

#follow-socials-text {
  padding-top: 40px;
}

.follow-socials {
  padding-top: 20px;
  display: flex;
  gap: 50px;
  justify-content: center;
}

.follow-socials a {
  width: 40px;
  transition: transform 150ms ease;
}

.follow-socials a:hover {
  transform: scale(1.2);
}

.contact-us-right {
  width: 550px;
  margin: 0 40px 0 40px;
  padding: 40px;
  background-color: var(--accent-color);
  border-radius: 50px;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-us-right textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
  resize: vertical;
}

.contact-us-right button {
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background-color: var(--light-orange);
  color: var(--text-color);
}

.contact-inputs {
  height: 50px;
  border: none;
  outline: none;
  padding: 0px 25px;
  border-radius: 50px;
  background-color: var(--primary-color);
}

.contact-inputs:focus {
  border: 2px solid var(--darker-orange);
}

.contact-inputs::placeholder {
  color: #a9a9a9;
}

.agree-to-terms-checkbox {
  display: flex;
  align-items: center;
  padding-left: 10px;
  gap: 10px;
}

.agree-to-terms-checkbox a {
  color: var(--primary-color);
}

.checkbox {
  width: 18px;
  height: 18px;
}


/* ------------------------- TERMS AND CONDITIONS PAGE ------------------------- */
.terms-and-conditions {
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.terms-and-conditions h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.terms-and-conditions a {
  color: unset;
}

.terms-and-conditions ul {
  padding-left: 38px;
  padding-bottom: 3px;
}

.terms-and-conditions p {
  padding-top: 10px;
}


/* ------------------------- FORM SUBMISSION PAGE ------------------------- */

.thank-you {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  background-color: var(--light-orange);
}

.thank-you img {
  width: 300px;
  height: auto;
}



/* ------------------------- FOOTER ------------------------- */
.footer {
  background-color: var(--light-purple);
  color: var(--primary-color);
  padding: min(10%, 60px) 5%;
}

.footer svg {
  fill: var(--primary-color);
}

.footer a {
  color: var(--hover-color);
}

.footer-content {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-bottom: 20px;
  gap: 20px;
}

.footer-content img {
  width: 200px;
  height: auto;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-links a {
  transition: transform 150ms ease;
}

.contact-links a:hover {
  transform: translateY(-3px);
}

.contact-links svg {
  height: 25px;
}

.footer-emails {
  display: flex;
}

.footer-emails svg {
  stroke-width: 20;
  stroke: var(--primary-color);
}

.footer-emails-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-phone {
  display: flex;
}

.footer-phone svg {
  stroke: var(--primary-color);
}

.footer-whatsapp {
  display: flex;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-links a {
  padding-left: 10px;
  transition: transform 150ms ease;
}

.nav-links a:hover {
  transform: translateY(-3px);
}

.social-nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 10px;
}

.social-nav-links a.socials {
  width: 30px;
  transition: transform 150ms ease;
}

.social-nav-links a.socials:hover {
  transform: scale(1.2);
}

.copyright {
  display: flex;
  justify-content: center;
  text-align: center;
}



/* ------------------------- MEDIA QUERIES ------------------------- */

@media screen and (max-width: 715px) {
  #small-screen-navbar,
  #close-sidebar-button {
    display: flex;
  }
  #small-screen-navbar {
    position: sticky;
    top: 0;
    background-color: var(--primary-color);
    z-index: 15;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(15em, 100%);
    z-index: 16;
    border-left: 1px solid var(--hover-color);
    transition: right 300ms ease-out;
  }
  nav.show {
    right: 0;
  }
  nav.show ~ #overlay {
    display: block;
  }
  nav ul {
    width: 100%;
    flex-direction: column;
  }
  nav a {
    width: 100%;
  }
  nav a.active-link {
    border-bottom: none;
  }
  nav .contactUs-li {
    margin-right: unset;
  }
  nav a.socials {
    width: 60px;
  }
}

@media screen and (max-width: 1179px) {
  .contact-us {
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 575px) {
  .top-banner h1 {
    max-width: 360px;
  }

  .footer-content img {
    width: 150px;
    height: auto;
  }

  .contact-us-right {
    padding: 20px;
    border-radius: 30px;
  }
}

@media screen and (max-width: 440px) {
  .carousel {
    width: 100%;
  }

  .carousel-slide {
    width: 100%;
  }

  .all-itineraries {
    padding: 10% 5%;
  }
}

@media screen and (max-width: 979px) {
  .destination {
    gap: 10px;
  }
  .carousel-text {
  width: 500px;
}
}

@media screen and (max-width: 360px) {
  .all-itineraries {
    padding: 10% 2%;
  }

  .itinerary-tabs {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 1112px) {
  .about-text {
    width: fit-content;
    max-width: 600px;
  }

  .about-content {
    gap: 10px;
  }
}

@media screen and (max-width: 849px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  }

  .latest-youtube {
    padding: min(10%, 60px) 10%;
  }
}

@media screen and (max-width: 550px) {
  .breadcrumbs {
    font-size: 12px;
  }

  .top-banner .breadcrumbs {
    left: 5%;
  }

  .breadcrumbs ul {
    gap: 10px;
  }

  .itinerary-tabs ul {
    gap: 30px;
  }
}

@media screen and (max-width: 800px) {
  .itinerary-title .breadcrumbs p {
    display: none;
  }
}

@media screen and (max-width: 466px) {
  .footer-content {
    display: flex;
  }
  .footer-content img {
    width: 90px;
    height: auto;
  }
  .contact-links {
    gap: 5px;
  }
  .nav-links{
    gap: 3px;
  }
}

@media screen and (max-width: 824px) {
  .itinerary-details-and-included {
    gap: 20px;
  }
}