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

html {
  font-size: 25px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #212529;
}

h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.875rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.875rem;
  }
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

a {
  color: #2a9d8f;
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: #21867a;
}

a:focus-visible {
  outline: 2px solid #2a9d8f;
  outline-offset: 2px;
}

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

ul,
ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2-col {
  grid-template-columns: 1fr;
}

.grid--3-col {
  grid-template-columns: 1fr;
}

.grid--4-col {
  grid-template-columns: 1fr;
}

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

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

@media (min-width: 1024px) {
  .grid--3-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4-col {
    grid-template-columns: repeat(2, 2fr);
  }
}

@media (min-width: 1280px) {
  .grid--4-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #2a9d8f;
}

.text-secondary {
  color: #e76f51;
}

.text-light {
  color: #ffffff;
}

.text-muted {
  color: #adb5bd;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 2rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

.logo__link {
  display: block;
  text-decoration: none;
}

.logo__text {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: #212529;
}

.logo__highlight {
  color: #2a9d8f;
}

@media (min-width: 768px) {
  .logo__text {
    font-size: 1.5rem;
  }
}

.menu-toggle {
  display: none;
}

.menu-toggle-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  right: 50px;
  z-index: 100;
}

.hamburger {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #212529;
  border-radius: 0.25rem;
  transition: transform 250ms ease;
}

.menu-toggle:checked ~ .menu-toggle-label .hamburger {
  background-color: #2a9d8f;
}

.menu-toggle:checked ~ .menu-toggle-label .hamburger:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle:checked ~ .menu-toggle-label .hamburger:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .menu-toggle-label .hamburger:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #ffffff;
  padding: 4rem 2rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: right 250ms ease;
  z-index: 10;
  margin: 0;
}

.menu-toggle:checked ~ .nav .nav__list {
  right: 0;
}

.nav__item {
  margin-bottom: 1.5rem;
}

.nav__link {
  display: block;
  font-weight: 500;
  font-size: 1.125rem;
  color: #212529;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 150ms ease;
}

.nav__link:hover,
.nav__link--active {
  color: #2a9d8f;
  border-bottom-color: #2a9d8f;
}

@media (min-width: 1024px) {
  .menu-toggle-label {
    display: none;
  }

  .nav__list {
    position: static;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    right: auto;
  }

  .nav__item {
    margin-bottom: 0;
    padding: 0 7px;
  }

  .nav__link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }
}

.hero {
  position: relative;
  min-height: 70vh;
  background-image: url("../assets/hero-main-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero--destinations {
  background-image: url("../assets/hero-destination-bg.jpg");
}

.hero--packages {
  background-image: url("../assets/hero-packages-bg.jpg");
}

.hero--contact {
  background-image: url("../assets/hero-contact-bg.jpg");
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero__title {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.5rem;
  transition: all 250ms ease;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background-color: #2a9d8f;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #21867a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn--secondary {
  background-color: #e76f51;
  color: #ffffff;
}

.btn--secondary:hover {
  background-color: #d65c3e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn--outline {
  background-color: transparent;
  border-color: #2a9d8f;
  color: #2a9d8f;
}

.btn--outline:hover {
  background-color: #2a9d8f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn--text {
  background-color: transparent;
  color: #2a9d8f;
  padding: 0;
  border: none;
}

.btn--text:hover {
  color: #21867a;
  text-decoration: underline;
  transform: none;
  box-shadow: none;
}

.btn--small {
  padding: 0.25rem 1.5rem;
  font-size: 0.875rem;
}

.btn--large {
  padding: 1rem 3rem;
  font-size: 1.125rem;
}

.btn--block {
  display: block;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
}

.section {
  padding: 4rem 0;
}

.section__title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #2a9d8f;
  margin: 1rem auto 2rem;
  border-radius: 9999px;
}

.section__subtitle {
  text-align: center;
  color: #495057;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__footer {
  text-align: center;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 250ms ease,
    box-shadow 250ms ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.value-card__icon {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.value-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card__description {
  color: #495057;
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 250ms ease,
    box-shadow 250ms ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card__image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.card:hover .card__image {
  transform: scale(1.05);
}

.card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 250ms ease;
}

.card:hover .card__overlay {
  opacity: 1;
}

.card__cta {
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  background-color: #2a9d8f;
  border-radius: 0.5rem;
}

.card__content {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card__description {
  color: #495057;
  margin-bottom: 1rem;
}

.card__meta {
  display: flex;
  justify-content: space-between;
  color: #adb5bd;
  font-size: 0.875rem;
}


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

.destination-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 250ms ease,
    box-shadow 250ms ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.destination-card__image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.destination-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.destination-card:hover .destination-card__image {
  transform: scale(1.05);
}

.destination-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 250ms ease;
}

.destination-card:hover .destination-card__overlay {
  opacity: 1;
}

.destination-card__cta {
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  background-color: #2a9d8f;
  border-radius: 0.5rem;
  text-decoration: none;
}

.destination-card__content {
  padding: 1.5rem;
}

.destination-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.destination-card__badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.destination-card__badge--europe {
  background-color: #a7c7e7;
  color: #1e3a8a;
}

.destination-card__badge--asia {
  background-color: #fecaca;
  color: #7f1d1d;
}

.destination-card__badge--beach {
  background-color: #bbf7d0;
  color: #14532d;
}

.destination-card__badge--adventure {
  background-color: #fde68a;
  color: #78350f;
}

.destination-card__badge--cultural {
  background-color: #ddd6fe;
  color: #4c1d95;
}

.destination-card__badge--nature {
  background-color: #a7f3d0;
  color: #064e3b;
}

.destination-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.destination-card__description {
  color: #495057;
  margin-bottom: 1rem;
}

.destination-card__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #adb5bd;
  font-size: 0.875rem;
}

.package-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 250ms ease,
    box-shadow 250ms ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.package-card--featured {
  border: 2px solid #2a9d8f;
  transform: scale(1.05);
}

.package-card--featured:hover {
  transform: translateY(-5px) scale(1.05);
}

.package-card--horizontal {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .package-card--horizontal {
    flex-direction: row;
  }

  .package-card--horizontal .package-card__header {
    flex: 0 0 200px;
    border-right: 1px solid #e9ecef;
  }

  .package-card--horizontal .package-card__content {
    flex: 1;
  }
}

.package-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  text-transform: uppercase;
  background-color: #e76f51;
  color: #ffffff;
}

.package-card__header {
  padding: 2rem;
  background-color: #f8f9fa;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.package-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.package-card__price {
  font-size: 1.875rem;
  font-weight: 700;
  color: #2a9d8f;
  margin-bottom: 0.25rem;
}

.package-card__price-period {
  font-size: 1rem;
  color: #adb5bd;
}

.package-card__subtitle {
  color: #adb5bd;
  margin-bottom: 1rem;
}

.package-card__rating {
  margin-top: 1rem;
}

.star {
  color: #fbbf24;
}

.rating-text {
  color: #adb5bd;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

.package-card__content {
  padding: 2rem;
}

.package-card__description {
  color: #495057;
  margin-bottom: 1.5rem;
}

.package-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.package-card__feature {
  padding: 0.25rem 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
}

.package-card__feature:last-child {
  border-bottom: none;
}

.package-card__feature::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.package-card__feature--included::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232a9d8f'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.package-card__feature--not-included::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e76f51'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

.package-card__footer {
  margin-top: 1.5rem;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2.25rem;
  color: #76c7bc;
  font-family: "Playfair Display", serif;
}

.testimonial__content {
  position: relative;
  z-index: 1;
}

.testimonial__text {
  font-style: italic;
  color: #495057;
  margin-bottom: 1.5rem;
}

.testimonial__footer {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
}

.testimonial__author {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial__destination {
  color: #adb5bd;
  font-size: 0.875rem;
}

.cta {
  background-color: #2a9d8f;
  color: #ffffff;
  padding: 4rem 2rem;
  border-radius: 0.75rem;
  text-align: center;
}

.cta__title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta__description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta__note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  background-color: #212529;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer__section {
  margin-bottom: 2rem;
}

.footer__title {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer__contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  transition: opacity 250ms ease,
    visibility 250ms ease;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal__container {
  background-color: #ffffff;
  border-radius: 0.75rem;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  animation: modalFadeIn 250ms ease forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e9ecef;
}

.modal__title {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.modal__close {
  font-size: 1.875rem;
  line-height: 1;
  color: #adb5bd;
  text-decoration: none;
  font-weight: 300;
  padding: 0.25rem;
}

.modal__close:hover {
  color: #212529;
}

.modal__content {
  padding: 2rem;
}

.modal__image {
  margin-bottom: 1.5rem;
}

.modal__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.modal__details {
  margin-bottom: 1.5rem;
}

.modal__description {
  margin-bottom: 1.5rem;
  color: #495057;
}

.modal__highlights h4 {
  margin-bottom: 1rem;
}

.modal__highlights ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.modal__info-item {
  font-size: 0.875rem;
}

.modal__info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #212529;
}

.modal__footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e9ecef;
  text-align: right;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  margin-bottom: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion__input {
  display: none;
}

.accordion__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.accordion__label:hover {
  background-color: #e9ecef;
}

.accordion__label h3 {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background-color: #212529;
  transition: transform 150ms ease;
}

.accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.accordion__input:checked ~ .accordion__label .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}

.accordion__input:checked ~ .accordion__content {
  max-height: 2000px;
}

.accordion__content > * {
  padding: 1.5rem 2rem;
}

.package-details__section {
  margin-bottom: 2rem;
}

.package-details__section:last-child {
  margin-bottom: 0;
}

.package-details__section h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #2a9d8f;
}

.package-details__section ul {
  padding-left: 2rem;
  margin-bottom: 0;
}

.package-details__section p {
  margin-bottom: 0;
  color: #495057;
}

.custom-trip {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
  border-radius: 0.75rem;
  text-align: center;
}

.custom-trip__title {
  margin-bottom: 1rem;
}

.custom-trip__description {
  color: #495057;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.custom-trip__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .custom-trip__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.custom-trip__feature {
  text-align: center;
}

.custom-trip__icon {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.custom-trip__feature h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.custom-trip__feature p {
  color: #495057;
  font-size: 0.875rem;
}

.response-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 0.75rem;
}

@media (min-width: 768px) {
  .response-info {
    flex-direction: row;
    text-align: left;
  }
}

.response-info__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .response-info__icon {
    margin-bottom: 0;
    margin-right: 2rem;
    flex-shrink: 0;
  }
}

.response-info__content {
  flex: 1;
}

.response-info__title {
  margin-bottom: 1rem;
}

.response-info__description {
  color: #495057;
  margin-bottom: 2rem;
}

.response-time {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.response-time__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.response-time__duration {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2a9d8f;
  margin-bottom: 0.25rem;
}

.response-time__note {
  font-size: 0.875rem;
  color: #adb5bd;
}

.faq-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.text-link {
  color: #2a9d8f;
  text-decoration: underline;
}

.text-link:hover {
  color: #21867a;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media print {
  .header,
  .footer,
  .hero__buttons,
  .btn,
  .map,
  .contact-sidebar,
  .modal,
  .accordion__icon {
    display: none !important;
  }

  .hero {
    min-height: auto;
    background: none !important;
  }

  .hero__overlay {
    position: static;
    background: none;
  }

  .hero__title,
  .hero__subtitle {
    color: #000000;
  }

  .section {
    padding: 2rem 0;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
  }
}
