
.homeBanner {
  position: relative;
  height: 100dvh;
  backdrop-filter: blur(1px);
  margin-block: 2rem 14rem;
}

.homeBanner_backdrop {
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.4);
  backdrop-filter: blur(1px);
}
.homeBanner_backdrop > div > div {
  width: calc(50% - 1.5rem);
}

.homeBanner_bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.homeBanner_masonry {
  margin-bottom: -2.5rem;
}

.homeBanner_masonry img {
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.homeBanner_masonry > div:nth-child(2) {
  margin-bottom: -1.8rem;
}

.homeBanner_masonry img:only-child {
  aspect-ratio: 3/5;
}
.homeBanner_masonry div:nth-child(2) img:first-child {
  aspect-ratio: 3/5;
}
.homeBanner_masonry div:nth-child(2) img:last-child {
  aspect-ratio: 4/5;
}
.homeBanner_masonry div:last-child img:first-child {
  aspect-ratio: 3/5;
}
.homeBanner_masonry div:last-child img:last-child {
  aspect-ratio: 7/10;
}

@media screen and (max-width: 768px) {
  .homeBanner {
    height: max-content;
  }

  .homeBanner_backdrop > div {
    flex-direction: column;
  }
  .homeBanner_backdrop > div > div {
    width: 100%;
  }
}




/*    A B O U T    */
.homeAbout {
  position: relative;
  margin-block: 12rem;
}
.homeAbout_background {
  background: var(--clr-primary-100);
  border-top: 3px solid var(--clr-primary-800);
  border-bottom: 3px solid var(--clr-primary-800);
  width: 100%;
  height: 80%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.homeAbout_content > div {
  width: calc(50% - 1.5rem);
}

.homeAbout_text {
  padding-block: 14rem;
  color: var(--clr-black);
}

.homeAbout_text p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  max-width: 48rem;
}

.homeAbout_masonry > div {
  width: 100%;
}

.homeAbout_img {
  aspect-ratio: 2/3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}


@media screen and (max-width: 768px) {
  .homeAbout_background {
    height: 90%;
    top: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  .homeAbout_content {
    flex-direction: column;
    align-items: unset;
    padding-block: 4rem;
  }

  .homeAbout_content > div {
    width: 100%;
  }

  .homeAbout_text {
    padding-block: 0;
  }
}


/*    C O N S U L T A N T S    */
.homeConsultants {
  padding-block: 6rem;
}

.homeConsultants h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 3rem;
}

/* Guide Card Styles */
.guide-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.guide-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
}

.guide-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.guide-card-favorite:hover {
  background: #ff4757;
  color: white;
  transform: scale(1.1);
}

.guide-card-favorite i {
  font-size: 18px;
  color: #ff4757;
}

.guide-card-favorite:hover i {
  color: white;
}

.guide-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.guide-card-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 0.8rem;
}

.guide-card-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #FFA500;
}

.guide-card-rating i {
  font-size: 14px;
  margin-right: 2px;
}

.guide-card-rating span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-black);
}

.guide-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.guide-card-location,
.guide-card-language {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: #666;
}

.guide-card-location i,
.guide-card-language i {
  font-size: 1.2rem;
  color: #999;
}

.guide-card-btn {
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  border: 1.5px solid #ddd;
  color: var(--clr-black);
  transition: all 0.3s ease;
}

.guide-card-btn:hover {
  background: var(--clr-primary-500);
  border-color: var(--clr-primary-500);
  color: white;
}

/* Swiper Customization */
.guidesSwiper {
  padding-bottom: 5rem;
}

.guidesSwiper .swiper-pagination {
  bottom: 0;
}

.guidesSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.guidesSwiper .swiper-pagination-bullet-active {
  background: #FF6B35;
  width: 32px;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .homeConsultants h2 {
    font-size: 2.2rem;
  }
  
  .guide-card-name {
    font-size: 1.4rem;
  }
}


/*    H O M E   O N L I N E    */

.homeOnline {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-block: 6rem;
}
.homeOnline > div {
  flex: 1;
}

.homeOnline_content_wrapper {
  display: flex;
  justify-content: flex-end;
}

.homeOnline_content {
  width: calc((min(200%, 120rem) / 2) - 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.homeOnline_title {
  color: var(--clr-primary-700);
}

.homeOnline_shortDesc {
  font-weight: 100;
  font-style: italic;
}

.homeOnline_img img {
  max-height: 44rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 0 0 1rem;
  filter: blur(0.8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

@media screen and (max-width: 768px) {
  .homeOnline {
    flex-direction: column;
    align-items: unset;
    gap: 2rem;
  }

  .homeOnline_content {
    width: 100%;
    padding-inline: 1.6rem;
  }

  .homeOnline_img img {
    border-radius: 0;
    max-height: 24rem;
  }
}



/*    S T A T I S T I C S    */

.statistics {
  margin-block: 8rem;
  padding-block: 6rem;
  background: var(--clr-primary-600);
  text-align: center;
}

.statistics_title {
  color: var(--clr-background-1);
}

.statistics_content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.2rem;
}

.statisticsCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.statisticsCard_count {
  color: var(--clr-background-1);
  font-size: 3.2rem;
}

.statisticsCard_title {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .statistics_content {
    flex-direction: column;
    gap: 1rem;
  }
}



/*    C O U N T R I E S    */
.homeCountries {
  padding-block: 6rem;
}

.homeCountries h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 3rem;
}

.country-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.country-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.country-card:hover .country-card-image {
  transform: scale(1.1);
}

.country-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: flex-end;
}

.country-card-title {
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
}

.countriesSwiper {
  padding-bottom: 5rem;
}

.countriesSwiper .swiper-pagination {
  bottom: 0;
}

.countriesSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.countriesSwiper .swiper-pagination-bullet-active {
  background: #FF6B35;
  width: 32px;
  border-radius: 6px;
}


/*    C I T I E S    */
.homeCities {
  padding-block: 6rem;
}

.homeCities h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 3rem;
}

.city-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.city-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.city-card:hover .city-card-image {
  transform: scale(1.1);
}

.city-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.city-card-location {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  width: fit-content;
}

.city-card-location i {
  font-size: 1.4rem;
}

.city-card-location span {
  font-size: 1.4rem;
  font-weight: 600;
}

.city-card-guides {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.city-card-avatars {
  display: flex;
  align-items: center;
}

.city-card-avatars img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  transition: transform 0.2s ease;
}

.city-card-avatars img:first-child {
  margin-left: 0;
}

.city-card-avatars img:hover {
  transform: scale(1.15);
  z-index: 10;
}

.city-card-guides span {
  font-size: 1.3rem;
  font-weight: 500;
}

.citiesSwiper {
  padding-bottom: 5rem;
}

.citiesSwiper .swiper-pagination {
  bottom: 0;
}

.citiesSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.citiesSwiper .swiper-pagination-bullet-active {
  background: #FF6B35;
  width: 32px;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .homeCountries h2,
  .homeCities h2 {
    font-size: 2.2rem;
  }
  
  .country-card {
    height: 220px;
  }
  
  .city-card {
    height: 280px;
  }
  
  .country-card-title {
    font-size: 2rem;
  }
}


/*    W H Y    T O U R C L O U D    */
.homeWhy {
  padding-block: 6rem;
  background: #f8f9fa;
}

.homeWhy h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 3rem;
}

.why-card {
  padding: 3rem 2rem;
  background: white;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.why-card-icon {
  margin-bottom: 2rem;
}

.why-card-icon img {
  width: 80px;
  height: 80px;
}

.why-card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--clr-black);
  line-height: 1.5;
  margin: 0;
}


/*    O F F E R S    */
.homeOffers {
  padding-block: 6rem;
}

.homeOffers h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 3rem;
}

.offer-card {
  display: flex;
  align-items: center;
  border-radius: 16px;
  /* overflow: hidden; */
  height: 12rem;
  margin-block: 16rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.offer-card-content {
  flex: 1;
  padding: 3rem;
}

.offer-card-image {
  flex: 0 0 45%;
  height: 100%;
  position: relative;
}

.offer-card-image img {
  position: absolute;
  bottom: 0;
  width: min(90%, 26rem);
  height: 24rem;
  object-fit: contain;
}
.offer-card-image-right img {
  right: 0;
  border-bottom-right-radius: 16px;
  object-position: right bottom;
}
.offer-card-image-left img {
  left: 0;
  border-bottom-left-radius: 16px;
  object-position: left bottom;
}

.offer-card-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.offer-card-text {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

/* Peach Theme */
.offer-card-peach {
  background: linear-gradient(135deg, #FFB4A2 0%, #E5989B 100%);
}

/* Blue Theme */
.offer-card-blue {
  background: linear-gradient(135deg, #A8DADC 0%, #457B9D 100%);
}

/* Orange Theme */
.offer-card-orange {
  background: linear-gradient(135deg, #FFB347 0%, #FF8C42 100%);
}

@media screen and (max-width: 768px) {
  .homeWhy h2,
  .homeOffers h2 {
    font-size: 2.2rem;
  }
  
  .why-card {
    padding: 2rem 1.5rem;
  }
  
  .why-card-icon img {
    width: 60px;
    height: 60px;
  }
  
  .why-card-title {
    font-size: 1.4rem;
  }
  
  .offer-card {
    flex-direction: column;
    align-items: stretch;
    height: unset;
    min-height: 12rem;
  }
  
  .offer-card-image {
    flex: 0 0 auto;
    width: 100%;
    /* height: 200px; */
  }

  .offer-card-image img {
    position: static;
    width: 100%;
    object-fit: cover;
    object-position: unset;
  }

  .offer-card-image-right img {
    border-radius: 0 0 16px 16px;
  }
  .offer-card-image-left img {
    border-radius: 16px 16px 0 0;
  }
  
  .offer-card-content {
    padding: 2rem;
  }
  
  .offer-card-title {
    font-size: 1.8rem;
  }
  
  .offer-card-text {
    font-size: 1.3rem;
  }
}

