main {
  padding: 0 0 clamp(60px, 10vw, 120px) 0;
  display: flex;
  flex-direction: column;
}
/* MICE Banner */
.mice-banner {
  background-image: url("/wp-content/themes/astanatourism/assets/images/mice/mice-banner.jpg"); /* Ensure this image exists or use a fallback */
  background-size: cover;
  background-position: center;
  padding: 0 60px;
  margin-bottom: 60px;
  position: relative;
  border-radius: 0 0 30px 30px;
  height: 100dvh;
}

.mice-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  border-radius: 0 0 30px 30px;
}

.mice-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.mice-banner h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.1;
}

.mice-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e56228;
  color: white;
  padding: 16px 32px;
  border-radius: 45px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  align-self: flex-start;
}

.mice-catalog-btn:hover {
  background: #d4511a;
  transform: translateY(-2px);
  color: white;
}

/* Breadcrumbs override for MICE page */
.breadcrumps {
  margin-bottom: 30px !important; /* Reduced from default */
  padding: 0;
}
.breadcrumps__item--current {
  color: #b8c1d2;
}

/* Exhibition List */
.exhibition {
  margin-bottom: 100px;
}

.exhibition__in {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 992px) {
  .exhibition__in {
    flex-direction: column;
    gap: 30px;
  }
}

.exhibition__images {
  display: flex;
  width: 65%; /* Adjust based on design needs */
  height: 400px; /* Fixed height for interaction */
}

@media (max-width: 992px) {
  .exhibition__images {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }
}

/* Interactive Item Styles */
.exhibition__item {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  margin-right: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.exhibition__item:first-child {
  width: 50%;
  z-index: 1;
}

.exhibition__item:nth-child(2),
.exhibition__item:nth-child(3) {
  width: 25%;
  z-index: 1;
}

/* Hover Effects Logic matching template 2.php */
.exhibition__images:hover .exhibition__item {
  width: 20%; /* Shrink others */
}

.exhibition__images .exhibition__item:hover {
  width: 60%; /* Expand hovered */
  z-index: 2;
}

/* Fallback for mobile/touch or simpler behavior */
@media (max-width: 768px) {
  .exhibition__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: auto;
  }

  .exhibition__item,
  .exhibition__item:first-child,
  .exhibition__item:nth-child(2),
  .exhibition__item:nth-child(3) {
    width: 100% !important;
    height: 200px;
    margin-right: 0;
  }

  .exhibition__item:first-child {
    grid-column: 1 / -1;
    height: 250px;
  }
}

.exhibition__img {
  width: 100%;
  height: 100%;
}

.exhibition__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.exhibition__item:hover img {
  transform: scale(1.05);
}

.exhibition__title {
  flex: 1;
  width: 35%;
}

@media (max-width: 992px) {
  .exhibition__title {
    width: 100%;
  }
}

.exhibition__content h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* Light text for dark background */
}

.exhibition__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5; /* Light grey text */
  margin-bottom: 30px;
}
/* MICE Detail Page Styles */
.banner-wrapper--excurtion-single {
  position: relative;
  height: 60vh;
  min-height: 500px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  margin-bottom: 60px;
}

.banner-wrapper--excurtion-single::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.banner-content--excurtion {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  padding: 40px;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.banner--excurtion-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
}

.banner--excurtion-order {
  display: inline-block;
  padding: 12px 30px;
  background: #e56228;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.3s;
}

.banner--excurtion-order:hover {
  background: #d4511a;
}

.excurtions-single__wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}

.excurtions-single__content {
  flex: 2;
}

.excurtions-single__gallery {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.excurtions-single__content-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white; /* Dark theme */
}

.excurtions-single__text {
  color: #ccc;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.excurtions-single-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.excurtions-single-image--top {
  height: 300px;
}

/* Slider */
.excurtions-single-slider {
  margin-bottom: 80px;
}

.galer-container {
  overflow: hidden;
  padding: 0 20px;
}

.galer {
  padding-bottom: 40px;
}

.swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s;
}

.swiper-slide img:hover {
  transform: scale(1.02);
}

.custom-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.galer-button-prev,
.galer-button-next {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.galer-button-prev:hover,
.galer-button-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Map Section */
.contact_map {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 15px;
  padding-top: 60px;
}

.contact_map_title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.contact_map_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact_map_info_item {
  display: flex;
  gap: 10px;
}

.contact_map_info_text {
  font-size: 16px;
  color: white;
}

.contact_map_info_text_grey {
  color: #888;
}

.contact_map_info_text a {
  color: #40a0c6;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .excurtions-single__wrapper {
    flex-direction: column;
  }

  .excurtions-single__gallery {
    flex-direction: row;
    overflow-x: auto;
  }

  .excurtions-single-image {
    width: 80vw;
    height: 250px;
  }

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

/* Contact Map Section Custom Styles (Replaces Bootstrap) */
.contact_map {
  padding: 60px 0;
  /* background-color: #fff;  Removed to allow dark theme background */
}

.contact_map_row {
  display: flex;
  flex-wrap: wrap;
  gap: 0; /* Reduced gap to bring map closer if space allows */
  justify-content: space-between;
}

.contact_map_info_col {
  flex: 0 1 35%; /* Reduced width to bring map closer */
  min-width: 300px;
  padding-right: 20px;
}

.contact_map_map_col {
  flex: 0 1 65%; /* Increased map width */
  min-width: 300px;
}

@media (max-width: 991px) {
  .contact_map_info_col,
  .contact_map_map_col {
    flex: 0 0 100%;
    width: 100%;
  }

  .contact_map_info_col {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

.contact_map_title {
  color: #fff; /* White title */
  margin-bottom: 30px;
}

.contact_map_info_text {
  color: #fff; /* White text */
}

.contact_map_info_text_grey {
  color: #aaa; /* Lighter grey for visibility on dark */
}

.contact_map_info_text a {
  color: #e56228;
  text-decoration: none;
}
