/* ============================================================
  HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 48rem;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-swiper .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.hero-swiper .hero-bg-overlay {
  z-index: 1;
}

.hero-swiper .hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90.03deg,
    var(--white-rgba) 40%,
    var(--white-rgba9) 70%
  );
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
}
.slide-4 .hero-gradient {
  background: linear-gradient(
    90.03deg,
    var(--white-rgba) 50%,
    var(--white-rgba9) 80%
  );
  width: 100%;
}

.hero-swiper .hero-content {
  max-width: 68rem;
  width: 100%;
  margin-top: 8rem;
  z-index: 1;
}

.hero-swiper .container {
  height: 100%;
}

.hero-swiper .hero-content-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8rem 0;
}

.slide-4 .hero-content-wrap::before {
  content: "";
  position: absolute;
  max-width: 53rem;
  width: 100%;
  left: 0;
  background: #fff;
  filter: blur(20px);
  opacity: 0.7;
  top: 16rem;
  bottom: 7rem;
}
.slide-3 .hero-content-wrap::before {
  content: "";
  position: absolute;
  max-width: 53rem;
  width: 100%;
  left: 0;
  background: #fff;
  filter: blur(90px);
  opacity: 0.8;
  top: 16rem;
  bottom: 7rem;
}

.hero-swiper .hero-content h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.6rem;
  margin-bottom: 1.4rem;
}

.hero-swiper .hero-content p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.8rem;
  max-width: 52.9rem;
  margin-bottom: 2rem;
}

/* Hero nav buttons */
.hero-swiper .swiper-button-prev {
  left: 2rem;
}

.hero-swiper .swiper-button-next {
  right: 2rem;
}

/* ============================================================
  STATS SECTION
============================================================ */
.stats-section {
  background: var(--color-blue-light);
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.stats-grid .stat-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.stats-grid .stat-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid .stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stats-grid .stat-item span {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.2rem;
}

/* ============================================================
  ABOUT SECTION
============================================================ */
.about-section .about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.about-section .about-text {
  flex: 0 0 52.63%;
  max-width: 52.63%;
}

.about-section .about-text h2 {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 4.6rem;
  max-width: 45rem;
  width: 100%;
  margin-bottom: 0.8rem;
}

.about-section .about-text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
}

.about-section .about-image {
  flex: 0 0 42.98%;
  max-width: 42.98%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-section .btn-group {
  margin-top: 4.2rem;
}

/* ============================================================
  SERVICES SECTION
============================================================ */
.services-section {
  overflow: hidden;
}

.services-swiper .swiper-wrapper {
  align-items: stretch;
}

.service-card {
  position: relative;
  aspect-ratio: 0.79 / 1;
  overflow: hidden;
  width: 100%;
  height: 395px;
}

.service-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
  aspect-ratio: inherit;
}

.service-card:hover .card-img {
  transform: scale(1.04);
}

.service-card .service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: linear-gradient(
    to top,
    var(--black-rgba9) 0%,
    var(--black-rgba8) 100%
  );
}

.service-card .card-blur-1 {
  backdrop-filter: blur(0.4rem);
  -webkit-backdrop-filter: blur(0.4rem);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.service-card .card-blur-2 {
  backdrop-filter: blur(1.2rem);
  -webkit-backdrop-filter: blur(1.2rem);
  mask-image: linear-gradient(to bottom, transparent 25%, black 55%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 25%, black 55%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.service-card .card-blur-3 {
  backdrop-filter: blur(2.4rem);
  -webkit-backdrop-filter: blur(2.4rem);
  mask-image: linear-gradient(to bottom, transparent 55%, black 90%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 55%, black 90%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.service-card-body {
  position: relative;
  z-index: 1;
}

.service-card .service-card-body h3 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 3.2rem;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.service-card .service-card-body p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: var(--color-white);
}

/* ============================================================
  DESTINATION SECTION
============================================================ */
.destination-body {
  display: flex;
  gap: 6rem;
}

.japan-map-wrapper {
  flex: 0 0 50.88%;
  max-width: 50.88%;
}

.japan-map-wrapper .japan-map {
  position: relative;
  width: 100%;
  height: 50rem;
}

.map-okinawa-panel {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 42%;
  height: 46%;
  overflow: hidden;
}

.map-okinawa-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
  opacity: 0.3;
  transition: var(--transition);
}

.map-main {
  position: absolute;
  left: 2rem;
  top: 2rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.map-main svg {
  width: 100%;
}

/* SVG <g> region groups – base state */
svg .map-region {
  transition: var(--transition);
  cursor: pointer;
}

/* Active SVG region: full opacity + red fill on all child paths */
svg .map-region.active {
  opacity: 1;
}

svg .map-region.active path,
svg .map-region.active rect,
svg .map-region.active polygon,
svg .map-region.active circle,
svg .map-region.active ellipse {
  fill: var(--color-red) !important;
  stroke: var(--color-white) !important;
}

/* Legacy image-based map regions (kept for backwards compat) */
.map-region {
  position: absolute;
  object-fit: contain;
  transition: var(--transition);
}

.map-okinawa {
  top: 9.8%;
  left: 0;
  right: 59.3%;
  bottom: 64.7%;
}

.map-kyushu {
  top: 72%;
  left: 17.5%;
  right: 65.8%;
  bottom: -3.6%;
}

.map-shikoku {
  top: 73%;
  left: 33.9%;
  right: 53%;
  bottom: 15.8%;
}

.map-chugoku {
  top: 61.8%;
  left: 28.4%;
  right: 54.2%;
  bottom: 22.2%;
}

.map-kinki {
  top: 65.4%;
  left: 44.6%;
  right: 42.6%;
  bottom: 20.2%;
}

.map-chubu {
  top: 47.7%;
  left: 50.3%;
  right: 28.5%;
  bottom: 27.2%;
}

.map-kanto {
  top: 56.8%;
  left: 64.4%;
  right: 17.1%;
  bottom: -33%;
}

.map-tohoku {
  top: 27.8%;
  left: 68.1%;
  right: 17.9%;
  bottom: 41%;
}

.map-hokkaido {
  top: 0;
  left: 69%;
  right: -0.1%;
  bottom: 71.2%;
}

.map-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  background: var(--color-white);
  border: 0.1rem solid var(--color-blue-dark);
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-blue-dark);
  cursor: pointer;
  border-radius: 0.3rem;
  white-space: nowrap;
  transition: all var(--transition);
  z-index: 10;
  line-height: 2.4rem;
}

.map-label[data-region="Okinawa"] {
  top: 3rem;
  left: 3rem;
}

.map-label[data-region="Kyushu"] {
  top: 38.6rem;
  left: 2rem;
}

.map-label[data-region="Shikoku"] {
  top: 45.2rem;
  left: 20.9rem;
}

.map-label[data-region="Chugoku"] {
  top: 29.2rem;
  left: 13.5rem;
}

.map-label[data-region="kinki"] {
  top: 41.2rem;
  left: 33.4rem;
}

.map-label[data-region="Chubu"] {
  top: 23.3rem;
  left: 26.2rem;
}

.map-label[data-region="Tohoku"] {
  top: 21.1rem;
  left: 47.8rem;
}

.map-label[data-region="Kanto"] {
  top: 35rem;
  left: 44.4rem;
}

.map-label[data-region="Hokkaido"] {
  top: 4.7rem;
  left: 30.4rem;
}

.map-label.active {
  background: var(--color-blue-dark);
  color: var(--color-white);
  border-color: var(--color-blue-dark);
}

.map-label:hover:not(.active) {
  background: var(--blue-rgba);
}

.map-label .ml {
  display: inline;
}

.map-label.active .ml {
  display: none;
}

.map-sep-line {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 24.2rem;
  height: 23.6rem;
  pointer-events: none;
  opacity: 0.3;
}

.dest-detail {
  flex: 1;
  min-width: 0;
  background: var(--color-blue-dark);
  min-height: 45rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  transition: var(--transition);
}

.dest-detail .dest-detail-img {
  overflow: hidden;
  flex-shrink: 0;
  height: 29rem;
}

.dest-detail .dest-detail-img img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
  object-fit: cover;
}

.dest-detail .dest-detail-img:hover img {
  transform: scale(1.04);
}

.dest-detail .dest-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 0;
}

.dest-detail .dest-detail-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dest-detail .dest-detail-info h3 {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 2.4rem;
}

.dest-detail .dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dest-detail .dest-detail-info p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-white);
}

/* Destination tag pills */
.dest-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 1rem;
  background: var(--black-rgba);
  border: 0.1rem solid var(--white-rgba);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-white);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  white-space: nowrap;
}

/* Okinawa panel active */
.map-okinawa-panel.active img {
  opacity: 1;
}

/* Detail panel fade transition */
/* .dest-detail.dest-out {
  opacity: 0;
}

.dest-detail.dest-in {
  opacity: 1;
  transition: opacity 0.3s ease;
} */

/* ============================================================
  ITINERARY SECTION
============================================================ */

.itinerary-body {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  background: var(--color-cream);
  min-height: 43.4rem;
}

.itinerary-body .itinerary-left {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.itinerary-tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: 2.4rem;
  flex-shrink: 0;
  min-width: 23.2rem;
}

.itinerary-tabs .itin-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: var(--color-black);
  padding: 0;
  white-space: nowrap;
}

.itinerary-tabs .itin-tab.active {
  color: var(--color-blue);
}

.itinerary-tabs .itin-tab:hover:not(.active) {
  color: var(--color-blue);
}

.itinerary-tabs .itin-tab .arrow {
  width: 2.2rem;
  opacity: 0;
  transition: var(--transition);
  transform: translateX(-0.6rem);
  position: relative;
  top: 0.2rem;
}

.itinerary-tabs .itin-tab.active .arrow {
  opacity: 1;
  transform: translateX(0);
}

.itinerary-separator {
  width: 0.1rem;
  background: var(--color-cream2);
  margin: 7.5rem 0;
  flex-shrink: 0;
}

.itinerary-content {
  position: relative;
  flex: 1;
  padding: 2rem 2.4rem;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.itinerary-content .itin-panel {
  position: absolute;
  padding: 2rem 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.6rem);
  transition: var(--transition);
}

.itinerary-content .itin-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}

.itinerary-content .itin-panel h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.4rem;
  margin-bottom: 1rem;
}

.itinerary-content .itin-panel p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
}

.itinerary-content .itin-panel .btn {
  margin-top: 1.6rem;
}

.itinerary-body .itinerary-image {
  position: relative;
  flex: 0 0 43.86%;
  max-width: 43.86%;
  height: 43.4rem;
  overflow: hidden;
  flex-shrink: 0;
}

.itinerary-image .itin-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.itinerary-image .itin-image.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
  ACTIVITIES SECTION
============================================================ */
.activity-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.activity-img {
  aspect-ratio: 1.01 / 1;
  overflow: hidden;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
  aspect-ratio: inherit;
}

.activity-card:hover .activity-img img {
  transform: scale(1.04);
}

.activity-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  justify-content: space-between;
}

.activity-body h3 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3rem;
}
.activity-body h3 span {
  display: block;
}

.activity-body > p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
  margin-bottom: 1.2rem;
}

/* ============================================================
  SUCCESS STORIES SECTION
============================================================ */
.stories-swiper {
  overflow: hidden;
}

.story-card {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.story-card .story-bg-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: -2;
}

.story-card .story-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.story-card .story-content h3 {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 4.6rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.story-card .story-content {
  padding: 4rem 4rem 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  position: relative;
}

.story-card .story-content:before {
  content: "";
  background: linear-gradient(
    180deg,
    var(--black-rgba8) 0%,
    var(--black-rgba13) 100%
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.story-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.story-sep {
  opacity: 0.5;
}

.story-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.story-excerpt {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.4rem;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.story-excerpt strong {
  font-weight: 500;
  cursor: pointer;
}

.story-card .story-content .content-left,
.story-card .story-content .content-right {
  position: relative;
  z-index: 1;
}

.story-card .card-blur-1 {
  backdrop-filter: blur(0.2rem);
  -webkit-backdrop-filter: blur(0.2rem);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.story-card .card-blur-2 {
  backdrop-filter: blur(0.6rem);
  -webkit-backdrop-filter: blur(0.6rem);
  mask-image: linear-gradient(to bottom, transparent 25%, black 55%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 25%, black 55%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.story-card .card-blur-3 {
  backdrop-filter: blur(1.2rem);
  -webkit-backdrop-filter: blur(1.2rem);
  mask-image: linear-gradient(to bottom, transparent 55%, black 90%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 55%, black 90%);
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
}

/* ============================================================
  GALLERY SECTION
============================================================ */
.gallery-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  transition: var(--transition);
}

.social-icon img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.social-icon:hover {
  opacity: 0.7;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-row {
  display: flex;
  gap: 2rem;
  height: 34.5rem;
}

.gallery-4x4 {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.gallery-big {
  flex: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(
    180deg,
    var(--black-rgba8) 0%,
    var(--black-rgba3) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-item-overlay span {
  font-size: 2rem;
  line-height: 2rem;
  color: var(--color-white);
}

.gallery-item-overlay img {
  width: 2rem;
  height: 2rem;
}

.gallery-see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
}

/* ============================================================
  RESPONSIVE BREAKPOINTS
============================================================ */
@media (max-width: 1300px) {
  /* HERO SECTION */
  .hero-swiper .swiper-btn {
    display: none;
  }

  /* DESTINATION SECTION */
  .destination-body {
    gap: 0;
  }

  /* ITINERARY SECTION */
  .itinerary-tabs {
    gap: 2.5rem;
    min-height: 27rem;
  }

  .itinerary-separator {
    margin: 5.5rem 0;
  }

  .itinerary-body {
    gap: 2rem;
  }

  .itinerary-content .itin-panel {
    padding: 2rem 0;
  }

  /* SUCCESS STORIES SECTION */
  .story-card .story-content {
    padding: 3rem 2rem 2.5rem;
  }

  .story-card .story-content h3 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
}

@media (max-width: 1024px) {
  /* HERO SECTION */
  .hero-section {
    height: 46rem;
  }

  .hero-swiper .hero-content-wrap {
    padding: 6rem 0;
  }

  .hero-swiper .hero-content {
    margin-top: 6rem;
  }

  .hero-swiper .hero-content h1 {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }

  .hero-swiper .hero-content p {
    font-size: 1.6rem;
    line-height: 2.6rem;
    max-width: 48rem;
  }

  /* ABOUT SECTION */
  .about-section .about-inner {
    gap: 2rem;
  }

  .about-section .about-text {
    flex: 0 0 50.63%;
    max-width: 50.63%;
  }

  .about-section .about-image {
    flex: 0 0 44.98%;
    max-width: 44.98%;
  }

  .about-section .about-inner {
    gap: 2rem;
  }

  .about-section .about-text {
    flex: 0 0 50.63%;
    max-width: 50.63%;
  }

  .about-section .about-image {
    flex: 0 0 44.98%;
    max-width: 44.98%;
  }

  .about-section .about-text h2 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }

  .about-section .btn-group {
    margin-top: 3.5rem;
  }

  /* SERVICES SECTION */
  .service-card .service-card-overlay {
    padding: 2.6rem 1.5rem 1.5rem;
  }

  .service-card .service-card-body h3 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    margin-bottom: 1rem;
  }

  .service-card .service-card-body p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }

  /* ITINERARY SECTION */
  .itinerary-body {
    flex-direction: column;
  }

  .itinerary-body .itinerary-left {
    flex: none;
    width: 100%;
  }

  .itinerary-body .itinerary-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 60%;
  }

  .itinerary-tabs .itin-tab {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .itinerary-tabs {
    gap: 2rem;
    min-height: 24rem;
  }

  .itinerary-content .itin-panel h3 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .itinerary-content .itin-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 0;
  }

  .itinerary-content .itin-panel.active {
    display: block;
  }

  /* ACTIVITIES SECTION   */
  .activity-body h3 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }

  /* SUCCESS STORIES SECTION */
  .story-card {
    min-height: 42rem;
  }

  .story-card .story-content h3 {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }

  .story-card .story-bg-img.center-image {
    object-position: 80% bottom;
  }

  /* STATS SECTION */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }

  /* DESTINATION SECTION */
  .destination-body {
    flex-direction: column;
  }

  .japan-map-wrapper {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .japan-map-wrapper .japan-map {
    width: 100%;
    max-width: 58rem;
    margin: 0 auto;
  }

  .map-main {
    top: 0;
  }

  .dest-detail {
    width: 100%;
    height: auto;
    min-height: 40rem;
  }

  .dest-detail .dest-detail-info h3 {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }

  /* GALLERY SECTION */
  .gallery-grid {
    gap: 1.5rem;
  }

  .gallery-row {
    gap: 1.5rem;
  }

  .gallery-4x4 {
    gap: 1.5rem;
  }

  .gallery-item-overlay {
    padding: 3rem 1.5rem 1.5rem;
  }

  .gallery-item-overlay span {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .gallery-item-overlay img {
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media (max-width: 767px) {
  /* HERO SECTION */
  .hero-section {
    height: 40rem;
  }

  .hero-swiper .hero-content h1 {
    font-size: 3rem;
    line-height: 3.6rem;
  }

  /* ABOUT SECTION */
  .about-section .about-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .about-section .about-text,
  .about-section .about-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-section .about-text h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }

  .about-section .btn-group {
    margin-top: 2.5rem;
  }

  /* SERVICES SECTION */

  .service-card {
    aspect-ratio: 4 / 5;
    height: 335px;
  }

  .service-card .service-card-body h3 {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  /* DESTINATION SECTION */
  .map-label {
    font-size: 1.4rem;
    padding: 0.5rem 0.8rem;
    line-height: normal;
  }
  .dest-tag {
    font-size: 1.4rem;
    padding: 0.2rem 0.8rem;
  }

  .japan-map-wrapper .japan-map {
    max-width: 42rem;
    height: 48rem;
    margin-top: -4rem;
  }

  .map-label[data-region="Kyushu"] {
    left: 0;
  }

  .map-label[data-region="Tohoku"] {
    left: 36rem;
  }

  .map-label[data-region="Kanto"] {
    top: 31rem;
    left: 33rem;
  }

  .map-label[data-region="kinki"] {
    top: 36.2rem;
    left: 24.5rem;
  }

  .map-label[data-region="Shikoku"] {
    top: 40.5rem;
    left: 15.5rem;
  }

  .map-label[data-region="Chugoku"] {
    top: 27.2rem;
    left: 7.5rem;
  }

  .map-label[data-region="Chubu"] {
    top: 21.3rem;
    left: 20rem;
  }

  .map-label[data-region="Hokkaido"] {
    top: 4.5rem;
    left: 22.8rem;
  }

  /* ITINERARY SECTION */
  .itinerary-body .itinerary-left {
    flex-direction: column;
  }

  .itinerary-separator {
    width: auto;
    height: 0.1rem;
    margin: 0;
  }

  .itinerary-tabs {
    flex-direction: row;
    width: 100%;
    gap: 2rem;
    min-height: unset;
    padding: 0 2rem;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .itinerary-tabs .itin-tab {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 1.5rem 0;
    position: relative;
  }

  .itinerary-tabs .itin-tab:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid var(--color-blue);
    opacity: 0;
    visibility: hidden;
  }

  .itinerary-tabs .itin-tab.active:before {
    opacity: 1;
    visibility: visible;
  }

  .itinerary-tabs::-webkit-scrollbar {
    display: none;
  }

  .itinerary-content {
    padding: 2rem;
  }

  .itinerary-content .itin-panel h3 {
    font-size: 1.8rem;
  }

  .itinerary-body .itinerary-image {
    height: 25rem;
  }

  .itinerary-tabs .itin-tab .arrow {
    display: none;
  }

  /* ACTIVITIES SECTION */
  .activity-img {
    aspect-ratio: 1 / 1;
  }

  .activity-body h3 {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  /* SUCCESS STORIES SECTION */
  .story-card {
    min-height: 40rem;
  }

  .story-card .story-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.5rem 1.5rem;
  }

  .story-card .story-content h3 {
    font-size: 2rem;
    line-height: 2.6rem;
    margin-bottom: 0.8rem;
  }

  .story-meta {
    gap: 1rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .story-tags {
    gap: 0.8rem;
  }

  /* GALLERY SECTION */
  .gallery-grid {
    gap: 1rem;
  }

  .gallery-4x4 {
    gap: 1rem;
  }

  .gallery-item-overlay span {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }

  .gallery-row {
    gap: 1rem;
    flex-direction: column;
    height: auto;
  }

  .gallery-row:first-child {
    flex-direction: column-reverse;
  }

  .social-icon {
    width: auto;
    height: auto;
  }

  /* DESTINATION SECTION */
  .dest-detail .dest-detail-info h3 {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }

  .map-main {
    left: 0;
    top: 0;
  }
  .dest-detail .dest-detail-img {
    height: auto;
  }

  /* STATS SECTION */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid .stat-item {
    gap: 1.2rem;
  }

  .stats-grid .stat-icon {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 480px) {
  /* DESTINATION SECTION */
  .japan-map-wrapper .japan-map {
    transform-origin: center;
  }

  .map-label[data-region="Tohoku"] {
    left: auto;
    right: 0;
  }
  .map-label[data-region="Kanto"] {
    left: auto;
    right: 0;
  }
  .map-label[data-region="Chubu"] {
    left: 14rem;
  }
  .map-label[data-region="Okinawa"] {
    top: 9rem;
  }
  .map-label[data-region="Shikoku"] {
    top: 38rem;
    left: 13rem;
  }
  .map-main svg {
    height: 100%;
  }
}
