@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #e06951;
  --text-dark: #111827;
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-image: url("assets/header-bg.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  color: var(--text-dark);
  line-height: 1.5;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

.section__header {
  font-size: 3rem;
  font-weight: 500;
  line-height: 3.75rem;
  color: var(--text-dark);
  text-align: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.logo span {
  color: var(--primary-color);
}

img {
  width: 100%;
  display: block;
}

/* NAVIGATION */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: var(--text-dark);
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}



.nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

/* Hide the native checkbox */
#menu-toggle {
  display: none;
}

button {
  padding: 7px;
  border-radius: 3px;
  border: 1px solid gray;
  background-color: #fff1da;
  font-weight: 600;
  font-size: large;
  cursor: pointer;
}

.nav__menu__btn {
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* The label for the menu toggle */
label[for="menu-toggle"] {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav__logo .logo {
  color: var(--white);
}

/* Navigation links container */
.nav__links {
  list-style: none;
  background-color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Show menu when checkbox checked */
#menu-toggle:checked~ul.nav__links {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__links li {
  margin: 1rem 0;
}

.nav__links a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.1rem;
  white-space: nowrap;
}

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

/* HEADER */

.header__container {
  display: grid;
  gap: 2rem;
  padding-top: 6rem;
  /* offset for fixed nav */
  overflow: hidden;
}

.header__image img {
  max-width: 550px;
  margin: 0 auto;
}

.header__content .section__subheader {
  font-size: 1.2rem;
  color: var(--primary-color);
  text-align: center;
}

.header__content h1 {
  margin: 1rem 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: center;
}

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
  text-align: center;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.header__btns .btn {
  padding: 1rem 1.5rem;
  border: none;
  background-color: #f1a501;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: 2px 2px 20px rgba(241, 165, 1, 0.5);
  cursor: pointer;
}

.header__btns a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--text-light);
  font-size: 1rem;
}

.header__btns a span {
  background-color: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 50%;
  display: inline-flex;
  font-size: 1.5rem;
  box-shadow: 2px 2px 20px rgba(224, 105, 81, 0.5);
}

.header__btns a:hover {
  color: var(--text-dark);
}

/* SERVICE GRID */

.service__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.service__card {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 2rem;
  transition: 0.3s;
}

.service__card:hover {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.service__card img {
  margin-bottom: 2rem;
  max-width: 60px;
  margin-inline: auto;
}

.service__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.service__card p {
  color: var(--text-light);
}

/* DESTINATION GRID */

.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.destination__card {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.destination__details {
  padding: 1rem 1.5rem;
}

.destination__details>div {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destination__details h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
}

.destination__details p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.destination__details p span {
  font-size: 1.25rem;
  color: var(--text-dark);
  transform: rotateY(180deg);
}

/* TRIP CONTAINER */

.trip__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.trip__image img {
  max-width: 425px;
  margin: 0 auto;
  height: 400px;
}

.trip__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.trip__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trip__list li span {
  padding: 8px 15px;
  font-size: 1.75rem;
  color: var(--white);
  border-radius: 1rem;
}

.trip__list li:nth-child(1) span {
  background-color: #f0bb1f;
}

.trip__list li:nth-child(2) span {
  background-color: #f15a2b;
}

.trip__list li:nth-child(3) span {
  background-color: #006380;
}

.trip__list h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trip__list p {
  color: var(--text-light);
}

/* CLIENT CONTAINER */

.client__container {
  padding-bottom: 3rem;
  display: grid;
  gap: 2rem 4rem;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  height: auto !important;
}

.client__card {
  position: relative;
  isolation: isolate;
  padding-block: 3rem 2rem;
  padding-inline: 3rem 1rem;
}

.client__card img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 80px;
  border-radius: 100%;
}

.client__card__content {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.client__card__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.client__card__content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client__card__content h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

/* FOOTER */

.footer__container {
  display: grid;
  gap: 2rem;
  padding: 2rem 1rem;
}

.footer__col p {
  margin-top: 1rem;
  color: var(--text-light);
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-weight: 500;
  color: var(--text-light);
}

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

.footer__socials {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 8px 12px;
  font-size: 1.25rem;
  color: var(--text-dark);
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.footer__col h5 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
}

.footer__discover {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__discover img {
  max-width: 120px;
  border-radius: 1rem;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* RESPONSIVE STYLES */

/* Mobile first: default layouts mostly vertical stacks/single columns */

.service__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footer__container {
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    box-shadow: none;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
    width: auto;
  }

  .nav__logo .logo {
    color: var(--text-dark);
  }

  /* Hide menu button at wider widths */
  #menu-toggle,
  label[for="menu-toggle"] {
    display: none;
  }

  /* Show nav links as horizontal flex */
  .nav__links {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    background-color: transparent;
    transform: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    gap: 2rem;
    padding-left: 0;
    width: auto;
  }

  .nav__links li {
    margin: 0;
  }

  .nav__links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding-top: 0;
  }

  .header__image {
    grid-area: 1 / 2 / 2 / 3;
  }

  .header__content :is(.section__subheader, h1, p) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .service__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trip__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .trip__image {
    grid-area: 1 / 2 / 2 / 3;
  }

  .trip__content :is(.section__subheader, .section__header) {
    text-align: left;
  }

  .client__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .client__content :is(.section__subheader, .section__header) {
    text-align: left;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
    padding: 2rem 1rem;
  }
}

@media (min-width: 1024px) {
  .service__grid {
    gap: 2rem;
  }

  .service__card {
    padding: 2rem;
  }

  .destination__grid {
    gap: 2rem;
  }
}

.box-card {
  height: 365px;
  width: 350px;
  background-color: rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  padding: 1.5%;
  align-items: flex-start;
  border-radius: 8px;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  margin-top: 120px;
  margin-right: 80px;
}

.box-card img {
  border-radius: 8px;
  margin-bottom: 8px;
}

.box-card .icons {
  display: flex;
  gap: 10px;
}

.box-card .icons .icon {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 10px 0;
}

.box-card .icons .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.passenger {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.position img {
  position: absolute;
  top: 90px;
}

/* Add subtle hover effects to cards */
.service__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Adjust spacing between elements */
.section__container {
  padding: 4rem 1rem;
}

/* Media query adjustments */
@media (min-width: 768px) {
  .header__container {
    padding-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .service__grid {
    gap: 3rem;
  }
}

.service__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.destination__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.box-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease;
}

.service__card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.destination__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease;
}

.destination__card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.box-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease;
}

.box-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

```

/* Easy and Fast Section */
.min-h-screen {
  transition: all 0.3s ease-in-out;
}

.min-h-screen:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4 {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4:hover {
  transform: translateX(10px);
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4 .flex-shrink-0 {
  transition: all 0.5s ease-in-out;
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4:hover .flex-shrink-0 {
  transform: rotate(360deg);
  background-color: #fff;
  color: #333;
  transition: all 0.5s ease-in-out;
}

.min-h-screen .flex.flex-col.max-w-xl {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

```

/* Easy and Fast Section */
.min-h-screen {
  transition: all 0.3s ease-in-out;
}

.min-h-screen:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4 {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4:hover {
  transform: translateX(10px);
  background-color: #f7f7f7;
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4 .flex-shrink-0 {
  transition: all 0.5s ease-in-out;
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4:hover .flex-shrink-0 {
  transform: rotate(360deg);
  background-color: #fff;
  color: #333;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.min-h-screen .flex.flex-col.max-w-xl {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.min-h-screen .flex.flex-col.max-w-xl h1 {
  animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.min-h-screen .flex.flex-col.max-w-xl p {
  animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.flex.flex-col.max-w-xl .flex.items-start.gap-4 .flex-shrink-0 i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

* {
  transition: all 0.3s ease-in-out;
}

body {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

p {
  animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

img {
  animation: zoomIn 1s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

button,
.btn {
  transition: all 0.3s ease-in-out;
}

button:hover,
.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

a {
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #333;
  text-decoration: none;
  transform: scale(1.1);
}

/* Scroll Animations */

.scroll-animated {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
}

.top-destinations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.destination-card {
  width: calc(33.33% - 20px);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

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

.destination-card .content {
  padding: 20px;
}

/* Responsive Styles */

@media only screen and (max-width: 1024px) {
  .destination-card {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 768px) {
  .destination-card {
    width: 100%;
  }

  .destination-card img {
    height: 150px;
  }
}

@media only screen and (max-width: 480px) {
  .top-destinations {
    gap: 10px;
  }

  .destination-card {
    border-radius: 5px;
  }

  .destination-card img {
    height: 100px;
  }

  .destination-card .content {
    padding: 10px;
  }
}

.destination__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .destination__grid {
    grid-template-columns: 1fr;
  }
}

.destination__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns by default */
  gap: 2rem;
}

@media (max-width: 767px) {
  .destination__grid {
    grid-template-columns: 1fr;
    /* 1 column on small screens */
  }
}

/* Prevent horizontal scrollbar */
html,
body {
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
  width: 100%;
  /* Ensure body takes full width */
}

* {
  box-sizing: border-box;
  /* Include padding and border in element's total width and height */
}

/* Ensure images and other elements are responsive */
img {
  max-width: 100%;
  /* Ensure images do not exceed their container */
  height: auto;
  /* Maintain aspect ratio */
}

/* Adjustments for specific elements */
.nav__links,
.header__container,
.service__grid,
.destination__grid,
.footer__container {
  width: 100%;
  /* Ensure these elements take full width */
  overflow: hidden;
  /* Prevent overflow */
}

/* Additional adjustments for smaller screens */
@media (max-width: 768px) {
  .nav__links {
    padding: 0;
    /* Remove padding that may cause overflow */
  }

  .header__container {
    padding: 1rem;
    /* Adjust padding for smaller screens */
  }

  .service__grid,
  .destination__grid {
    padding: 0 1rem;
    /* Add padding to prevent content touching edges */
  }

  /* Ensure no fixed widths */
  .box-card {
    width: 100%;
    /* Ensure cards take full width */
    margin: 0;
    /* Remove margins that may cause overflow */
  }
}