/* ==========================================================================
   DENTAL TOURISM PAGE STYLES
   ========================================================================== */

.tourism-hero-banner {
  position: relative;
  width: 100%;
  height: calc(100vh - 127px);
  min-height: 700px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.header-is-shifted .tourism-hero-banner {
  margin-top: 0;
}

.tourism-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tourism-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.tourism-hero-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 127px);
}

.tourism-hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding-left: 15px;
}

.tourism-hero-img {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 800px;
  max-height: 95%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.tourism-hero-img img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  object-position: bottom right;
  display: block;
}

.tourism-hero-content h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.tourism-hero-content h1 .line-1,
.tourism-hero-content h1 .line-2 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(to right, #2f8fd6 0%, #194b70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.tourism-hero-content h1 .line-3 {
  font-size: 56px;
  font-weight: 500;
  color: #2f8fd6;
  line-height: 1.2;
  margin-top: 15px;
  display: block;
}

.tourism-hero-content p {
  font-size: 19px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 700px;
}

.tourism-hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-tourism-consult {
  background-color: #2f8fd6;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 0.5px solid #0b0f59;
}

.btn-tourism-consult:hover {
  background-color: #03318c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 143, 214, 0.4);
}

.btn-tourism-whatsapp {
  background-color: #3abe4d14;
  color: #3abe4d;
  padding: 16px 24px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1.5px solid #3abe4d;
}

.btn-tourism-whatsapp:hover {
  background-color: #25d366;
  color: #fff;
  transform: translateY(-3px);
}

.btn-tourism-whatsapp i {
  font-size: 20px;
}

/* Tourism Intro Section Styles */
.tourism-intro-section {
  background-color: #e3f2fd;
  padding: 60px 0 100px;
}

.tourism-intro-section .stats-row {
  background-color: transparent;
  padding: 30px 0;
  margin-bottom: 50px;
  /* border-bottom: 1px solid rgba(47, 143, 214, 0.2); */
}

.tourism-intro-section .stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.tourism-intro-section .stats-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.tourism-intro-section .stats-item:hover {
  transform: translateY(-5px);
}

.tourism-intro-section .stats-icon {
  width: 67px;
  height: 67px;
  flex-shrink: 0;
}

.tourism-intro-section .stats-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tourism-intro-section .stats-text h4 {
  font-size: 32px;
  font-weight: 700;
  color: #2f8fd6;
  margin: 0;
  line-height: 1;
}

.tourism-intro-section .stats-text p {
  font-size: 20px;
  color: #2f8fd6;
  margin: 4px 0 0;
  font-weight: 500;
}

/* Well Planned Content Styles */
.well-planned-img-box {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.well-planned-img-box img {
  width: 110%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.well-planned-img-box:hover img {
  transform: scale(1.05);
}

.well-planned-content-box {
  padding-left: 40px;
}

.well-planned-content-box h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.35;
  max-width: 500px;
}

.well-planned-content-box p {
  font-size: 16px;
  color: #444;
  letter-spacing: 0.2%;
  margin-bottom: 20px;
}

/* Tourism Services Section Styles */
.tourism-services-section {
  background: url("../../images/tourism-services-banner.png") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  color: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 30px;
  max-width: 760px;
  margin-inline: auto;
}

.services-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.services-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 8px;
}

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

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-category {
  font-size: 12px;
  font-weight: 500;
  color: #2f8fd6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.service-content h3 {
  margin-bottom: 4px;
}

.service-content h3 a {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.service-content h3 a:hover {
  color: #2f8fd6;
}

.service-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.35;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.explore-link {
  font-size: 14px;
  font-weight: 500;
  color: #020201;
  transition: color 0.3s ease;
}

.explore-link:hover {
  color: #2f8fd6;
}

.service-arrow {
  padding: 4px 8px;
  border-radius: 43px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-arrow img {
  width: 18px;
  height: 15px;
  display: block;
}

.service-card:hover .service-arrow {
  background-color: #020201;
  border-color: #020201;
  transform: translateX(5px);
}

.service-card:hover .service-arrow img {
  filter: brightness(0) invert(1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .services-header h2 {
    font-size: 32px;
  }

  .service-card {
    max-width: 450px;
    margin-inline: auto;
  }
}

/* Why International Patients Choose IDS Section Styles */
.why-choose-ids-new {
  padding: 80px 0;
  background-color: #ebf5ff;
  /* Light blue background as per mockup */
}

.why-choose-header-new {
  text-align: center;
  margin-bottom: 50px;
}

.why-choose-header-new h2 {
  font-size: 40px;
  font-weight: 600;
  color: #020201;
  margin-bottom: 12px;
}

.why-choose-header-new p {
  font-size: 16px;
  color: #020201;
  max-width: 780px;
  margin: 0 auto;
}

.reasons-list-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reason-card-new {
  background: #ffffff;
  border-radius: 20px;
  /* Slightly more rounded as per mockup */
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  /* Align icon with heading */
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f4f8;
}

.reason-card-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.reason-icon-new {
  width: 48px;
  height: 48px;
  background: #EAF6FF;
  /* Matches mockup blue box */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
  border: 0.5px solid #2F8FD6;
}

.reason-icon-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reason-text-new h3 {
  font-size: 24px;
  /* Larger heading */
  font-weight: 600;
  color: #020201;
  margin-bottom: 12px;
  /* Gap between heading and para */
  line-height: 1.35;
}

.reason-text-new p {
  font-size: 16px;
  /* Slightly larger para */
  color: #020201;
  letter-spacing: 0.2%;
  margin-bottom: 0;
}

.why-choose-img-box {
  height: 100%;
  /* Decreased height as requested */
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
}

.why-choose-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}


/* Responsive adjustments */
@media (max-width: 991px) {
  .why-choose-ids-new {
    padding: 60px 0;
  }

  .why-choose-img-box {
    margin-top: 40px;
    height: 450px;
  }

  .why-choose-header-new h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .reason-card-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }

  .why-choose-img-box {
    height: 350px;
  }
}

/* Your Dental Tourism Journey Section Styles */
.tourism-journey-section {
  padding: 80px 0 10px;
  background-color: #fff;
}

.journey-header {
  text-align: center;
  margin-bottom: 60px;
}

.journey-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #020201;
  margin-bottom: 12px;
}

.journey-header p {
  font-size: 16px;
  color: #020201;
  max-width: 780px;
  margin: 0 auto;
}

.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 50px;
}

.timeline-line {
  display: none !important;
  /* Replaced by ::before on journey-item to prevent extending past last item */
}

.journey-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  gap: 24px;
}

.journey-item::before {
  content: '';
  position: absolute;
  left: -31px;
  /* Center of the marker relative to item content */
  top: 20px;
  /* Start at center of current marker */
  bottom: -30px;
  /* Extend down to center of next marker */
  width: 2px;
  background-color: #e0e0e0;
  z-index: 1;
}

.journey-item:last-child::before {
  display: none;
  /* Remove line below the final point */
}

.journey-marker {
  position: absolute;
  left: -50px;
  z-index: 2;
}

.marker-circle {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #2f8fd6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #2f8fd6;
  transition: all 0.3s ease;
}

.marker-circle .step-check {
  display: none;
  /* Hidden by default */
}

.marker-circle.active {
  background-color: #2f8fd6;
  color: #fff;
  border-color: #2f8fd6;
  box-shadow: 0 4px 10px rgba(47, 143, 214, 0.3);
}



.journey-content {
  background-color: #fff;
  width: 100%;
  padding: 0;
  transition: all 0.3s ease;
}

.journey-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.journey-title-row h3 {
  font-size: 22px;
  font-weight: 500;
  color: #020201;
  margin: 0;
  transition: color 0.3s ease;
  margin-bottom: 12px;
  max-width: 620px;
}

.journey-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f8fbff;
  border: 1px solid #e1effe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f8fd6;
  font-size: 12px;
  transition: all 0.3s ease;
}

.journey-item.active .journey-toggle {
  background-color: #2f8fd6;
  color: #fff;
  border-color: #2f8fd6;
}

.journey-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin-top 0.3s ease;
}

.journey-item.active .journey-body {
  max-height: 1000px;
  margin-top: 12px;
}

.journey-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.35;
  margin-bottom: 0;
  max-width: 620px;
}

.journey-img-box {
  width: 100%;
  max-width: 794px;
  /* Specified width */
  height: 300px;
  /* Specified height */
  border-radius: 16px;
  /* Specified border-radius */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure image fills the box */
  border-radius: 16px;
}


/* Responsive Styles */
@media (max-width: 767px) {
  .journey-timeline {
    padding-left: 40px;
  }

  .timeline-line {
    left: 15px;
  }

  .journey-marker {
    left: -40px;
  }

  .marker-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .journey-title-row h3 {
    font-size: 18px;
  }

  .journey-header h2 {
    font-size: 30px;
  }
}

/* ==========================================================================
   REAL STORIES & SMILE TRANSFORMATIONS SECTION STYLES
   ========================================================================== */
.dental-tourism-real-stories {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-image: url('../../images/real-stories.png'), linear-gradient(to bottom, #ffffff 0%, #ebf5ff 100%);
  background-size: 100% auto, 100% 100%;
  /* Show full background image without cropping it */
  background-position: center 120px, top center;
  /* Shift background map down by 120px to clear the header */
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
}

.real-stories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: calc(50vw + 80px);
  /* Pushed down 120px to stay below the shifted map */
  position: relative;
  z-index: 3;
}

.real-stories-header .header-left {
  max-width: 800px;
}

/* Map Pins & Tooltips */
.map-pins-container {
  position: absolute;
  top: 120px;
  /* Perfectly matches the background image shift */
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  /* Let clicks pass through container */
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}

.map-pin-wrapper {
  position: absolute;
  pointer-events: auto;
  /* Enable hover/clicks on pins */
  z-index: 10;
  transform: translate(-50%, -50%);
  animation: pinBounce 3s infinite ease-in-out;
}

.map-pin-wrapper:hover {
  z-index: 100;
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2F8FD6;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-pin i {
  font-size: 28px;
  filter: drop-shadow(0 4px 6px rgba(47, 143, 214, 0.3));
}

.map-pin span {
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  white-space: nowrap;
}

.map-pin-wrapper:hover .map-pin {
  transform: scale(1.15) translateY(-5px);
}

.map-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 360px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

@media (max-width: 768px) {
  .map-tooltip {
    width: 280px;
    padding: 20px;
  }
}

.map-pin-wrapper:hover .map-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.tooltip-initials {
  width: 44px;
  height: 44px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.tooltip-content {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.tooltip-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

.author-details strong {
  display: block;
  font-size: 15px;
  color: #000000;
  margin-bottom: 4px;
}

.author-details span {
  display: block;
  font-size: 13px;
  color: #666666;
}

.real-stories-header .header-left {
  max-width: 650px;
}

.real-stories-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #020201;
  margin-bottom: 12px;
  line-height: 1.25;
}

.real-stories-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.real-stories-header .header-right {
  flex-shrink: 0;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
  height: 48px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-more:hover {
  background-color: #000000;
  color: #fff;
}

.video-slider-container {
  position: relative;
  z-index: 3;
}

.video-slider-container .video-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 25px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  margin-right: calc(-50vw + 50%);
  /* Pulls the videos to the right edge of the screen */
  padding-right: calc(50vw - 50% + 20px);
  /* Keeps scrolling boundaries balanced and smooth */
}

.video-slider-container .video-slider::-webkit-scrollbar {
  display: none;
}

/* High specificity wrapper to display exactly 4.5 videos on desktop of 100% equal size */
.dental-tourism-real-stories #videoSlider .videotestimonials {
  flex: 0 0 calc(25% - 15px) !important;
  max-width: calc(25% - 15px) !important;
  height: auto !important;
  aspect-ratio: 9 / 16 !important;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
  margin: 0;
}

.video-card-inner {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 9 / 16 !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background-color: transparent !important;
}

.video-card-inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  aspect-ratio: 9 / 16 !important;
  border-radius: 16px;
}

.video-slider-container .videotestimonials:hover .video-card-inner {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-slider-container .videotestimonials:hover .video-card-inner img {
  transform: scale(1.05);
}

.video-card-inner .videobtns {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff0000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-card-inner .videobtns i {
  color: #fff;
  font-size: 18px;
  margin-left: 3px;
}

.video-slider-container .videotestimonials:hover .videobtns {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.video-slider-container .video-slider-arrows {
  margin-top: 30px;
}

.video-slider-container .video-slider-arrows .custom-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  margin: 0 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.video-slider-container .video-slider-arrows .custom-arrow:hover {
  background-color: #f8f9fa;
  color: #000;
  border-color: #ccc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
  .dental-tourism-real-stories #videoSlider .videotestimonials {
    flex: 0 0 calc(33.33% - 13.33px) !important;
    max-width: calc(33.33% - 13.33px) !important;
  }
}

@media (max-width: 991px) {
  .tourism-hero-banner {
    height: auto;
    min-height: 600px;
  }

  .tourism-hero-row {
    min-height: 600px;
  }

  .tourism-hero-content {
    max-width: 55%;
    padding-top: 40px;
  }

  .tourism-hero-img {
    width: 45%;
  }

  .tourism-hero-content h1 .line-1,
  .tourism-hero-content h1 .line-2 {
    font-size: 56px;
  }

  .tourism-hero-content h1 .line-3 {
    font-size: 42px;
  }

  .tourism-hero-content p {
    font-size: 16px;
  }

  .tourism-intro-section .stats-container {
    gap: 20px;
  }

  .tourism-intro-section .stats-text h4 {
    font-size: 26px;
  }

  .tourism-intro-section .stats-text p {
    font-size: 16px;
  }

  .well-planned-content-box {
    padding-left: 0;
    margin-top: 30px;
  }

  .well-planned-content-box h2 {
    font-size: 30px;
  }

  .services-header h2 {
    font-size: 30px;
  }

  .why-choose-header-new h2 {
    font-size: 30px;
  }

  .journey-header h2 {
    font-size: 30px;
  }

  .real-stories-header h2 {
    font-size: 30px;
  }

  .real-stories-header {
    margin-bottom: 25vw;
  }

  .dental-tourism-real-stories {
    background-size: cover;
    background-position: center;
  }

  .dental-tourism-real-stories #videoSlider .videotestimonials {
    flex: 0 0 calc(40% - 12px) !important;
    max-width: calc(40% - 12px) !important;
  }

  .btn-view-more {
    height: 52px;
    font-size: 15px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .tourism-hero-banner {
    height: auto;
    min-height: auto;
    padding: 110px 0 50px;
  }

  .tourism-hero-row {
    min-height: auto;
    padding-bottom: 0;
  }

  .tourism-hero-bg img {
    object-position: center center;
  }

  .tourism-hero-content {
    padding-left: 0;
    padding-top: 30px;
    max-width: 100%;
  }

  .tourism-hero-img {
    display: none;
  }

  .tourism-hero-content h1 .line-1,
  .tourism-hero-content h1 .line-2 {
    font-size: 34px !important;
    line-height: 1.25;
  }

  .tourism-hero-content h1 .line-3 {
    font-size: 34px !important;
    margin-top: 5px;
    line-height: 1.25;
  }

  .tourism-hero-content p {
    font-size: 14px;
    max-width: 290px;
    margin-bottom: 24px;
    line-height: 1.45;
  }

  .tourism-hero-btns {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }

  .btn-tourism-consult,
  .btn-tourism-whatsapp {
    justify-content: center;
    height: 44px;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .btn-tourism-consult {
    order: 1;
  }

  .btn-tourism-whatsapp {
    order: 2;
  }

  .tourism-intro-section {
    padding: 40px 0 60px;
  }

  .tourism-intro-section .stats-row {
    margin-bottom: 20px;
    padding: 10px 0;
  }

  .tourism-intro-section .stats-container {
    justify-content: flex-start;
    gap: 20px;
  }

  .tourism-intro-section .stats-item {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .tourism-intro-section .stats-icon {
    width: 48px;
    height: 48px;
  }

  .tourism-intro-section .stats-text h4 {
    font-size: 22px;
  }

  .tourism-intro-section .stats-text p {
    font-size: 14px;
  }

  .well-planned-content-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .well-planned-content-box p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .services-header h2 {
    font-size: 24px;
  }

  .services-header p {
    font-size: 14px;
  }

  .service-content h3 a {
    font-size: 16px;
  }

  .service-content p {
    font-size: 13px;
  }

  .why-choose-header-new h2 {
    font-size: 24px;
  }

  .why-choose-header-new p {
    font-size: 14px;
  }

  .reason-text-new h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .reason-text-new p {
    font-size: 14px;
  }

  .journey-header h2 {
    font-size: 24px;
  }

  .journey-header p {
    font-size: 14px;
  }

  .journey-title-row h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .journey-content p {
    font-size: 14px;
  }

  .journey-img-box {
    height: 200px;
  }

  .dental-tourism-real-stories {
    padding: 60px 0;
    background-size: 100% auto, 100% 100% !important;
    background-position: center 240px, top center !important;
  }

  .map-pins-container {
    top: 240px;
  }

  .real-stories-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: calc(60vw + 60px);
  }

  .real-stories-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .real-stories-header p {
    font-size: 14px;
  }

  .dental-tourism-real-stories #videoSlider .videotestimonials {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }

  /* Mobile Map Pin Showcase */
  .map-pin-wrapper:not(.pin-Dubai) {
    display: none !important;
  }

  .map-pin i {
    font-size: 32px;
  }

  .map-pin span {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .map-tooltip {
    top: auto;
    bottom: 100%;
    transform: translateX(-50%) translateY(-15px);
  }

  .map-pin-wrapper:hover .map-tooltip {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (max-width: 480px) {
  .tourism-intro-section .stats-item {
    width: 100%;
  }

  .dental-tourism-real-stories #videoSlider .videotestimonials {
    flex: 0 0 calc(75% - 10px) !important;
    max-width: calc(75% - 10px) !important;
  }
}

/* ==========================================================================
   DENTAL TOURISM CASES SECTION STYLES
   ========================================================================== */
.dental-tourism-cases {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #ebf5ff 0%, #e3effd 100%);
  overflow: hidden;
}

.cases-header {
  text-align: center;
  margin-bottom: 50px;
}

.cases-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #020201;
  margin-bottom: 12px;
  line-height: 1.25;
}

.cases-header p {
  font-size: 16px;
  color: #555;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
}

.cases-slider-container {
  position: relative;
  width: 100%;
}

.cases-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 10px 10px 30px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.cases-slider::-webkit-scrollbar {
  display: none;
}

.case-card-wrapper {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  scroll-snap-align: start;
  display: flex;
}

.case-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(47, 143, 214, 0.06);
  border: 1px solid #f0f4f8;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(47, 143, 214, 0.15);
}

.case-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  background-color: #f7f9fc;
}

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

.case-card:hover .case-image-box img {
  transform: scale(1.04);
}

.case-badge {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-before {
  left: 16px;
  background-color: rgba(18, 18, 18, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.badge-after {
  right: 16px;
  background-color: #2f8fd6;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.case-info-box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.case-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #2f8fd6;
  background-color: #f4f9fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-icon-circle i {
  color: #2f8fd6;
  font-size: 18px;
}

.case-title-text {
  display: flex;
  flex-direction: column;
}

.case-title-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #020201;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.case-title-text p {
  font-size: 14px;
  font-weight: 500;
  color: #2f8fd6;
  margin: 0;
  line-height: 1.2;
}

.case-divider {
  height: 1px;
  background-color: #f0f4f8;
  margin: 20px 0;
}

.case-country-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.case-flag {
  font-size: 20px;
  line-height: 1;
}

.case-country-name {
  font-size: 15px;
  font-weight: 500;
  color: #555;
}

.cases-slider-arrows {
  margin-top: 30px;
}

.cases-slider-arrows .case-arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e0e8f0;
  background-color: #ffffff;
  color: #333;
  font-size: 16px;
  margin: 0 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(47, 143, 214, 0.05);
  transition: all 0.3s ease;
}

.cases-slider-arrows .case-arrow-btn:hover {
  background-color: #2f8fd6;
  color: #ffffff;
  border-color: #2f8fd6;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 143, 214, 0.2);
}

/* ==========================================================================
   RESPONSIVENESS STYLES
   ========================================================================== */
@media (max-width: 1200px) {
  .case-card-wrapper {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

@media (max-width: 991px) {
  .cases-header h2 {
    font-size: 36px;
  }

  .case-card-wrapper {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .case-card {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .dental-tourism-cases {
    padding: 60px 0;
  }

  .cases-header {
    margin-bottom: 35px;
  }

  .cases-header h2 {
    font-size: 32px;
  }

  .case-card-wrapper {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .case-info-box {
    padding: 20px;
  }

  .case-title-row {
    gap: 12px;
  }

  .case-icon-circle {
    width: 40px;
    height: 40px;
  }

  .case-icon-circle i {
    font-size: 16px;
  }

  .case-title-text h3 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .cases-header h2 {
    font-size: 28px;
  }

  .cases-header p {
    font-size: 14px;
  }

  .case-card-wrapper {
    flex: 0 0 calc(85% - 10px);
    /* Display 1.15 cards for a beautiful horizontal peek effect on mobile */
    max-width: calc(85% - 10px);
  }

  .cases-slider {
    gap: 16px;
    padding-bottom: 20px;
  }

  .case-image-box {
    aspect-ratio: 1.45 / 1;
  }

  .case-badge {
    top: 12px;
    padding: 4px 8px;
    font-size: 10px;
  }

  .badge-before {
    left: 12px;
  }

  .badge-after {
    right: 12px;
  }

  .case-info-box {
    padding: 16px;
  }

  .case-divider {
    margin: 15px 0;
  }
}

/* ==========================================================================
   NEW BLOGS SECTION STYLES (COPIED FROM HOME)
   ========================================================================== */
.blogs-new-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.blogs-new-section .container {
  position: relative;
}

.blogs-header-new {
  margin-bottom: 50px;
}

.blogs-header-left h2 {
  font-size: 40px;
  font-weight: 600;
  color: #020201;
  margin-bottom: 8px;
}

.blogs-header-left p {
  font-size: 16px;
  color: #020201;
  max-width: 600px;
  line-height: 1.5;
}

.btn-view-all-blogs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1px solid #1F1F1FB0;
  border-radius: 50px;
  color: #161c2d;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-all-blogs:hover {
  background-color: #2F8FD6;
  color: #ffffff;
}

.blogs-view-all-container {
  position: absolute;
  top: 0;
  right: 15px;
}

.blogs-grid-new {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.main-blog-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 550px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-blog-img {
  width: 100%;
  height: 100%;
}

.main-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.main-blog-card:hover .main-blog-img img {
  transform: scale(1.05);
}

.main-blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
}

.blog-tag-new {
  display: inline-block;
  padding: 6px 16px;
  background-color: #f3f5ff;
  color: #03318c;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.main-blog-overlay h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}

.sidebar-blogs-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-blog-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-blog-item:first-child {
  padding-top: 0;
}

.sidebar-blog-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-blog-thumb {
  width: 120px;
  height: 90px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-blog-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.sidebar-blog-item:hover h4 {
  color: #03318C;
}

@media (max-width: 1199px) {
  .main-blog-card {
    height: 450px;
  }

  .main-blog-overlay h3 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .blogs-grid-new {
    grid-template-columns: 1fr;
  }

  .main-blog-card {
    height: 400px;
  }

  .blogs-header-new {
    text-align: center;
    margin-bottom: 30px;
  }

  .blogs-view-all-container {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .blogs-header-left h2 {
    font-size: 24px !important;
  }

  .blogs-header-left p {
    font-size: 14px !important;
  }
}

@media (max-width: 575px) {
  .blogs-new-section {
    padding: 60px 0;
  }

  .blogs-header-left h2 {
    font-size: 24px !important;
    margin-bottom: 12px;
  }

  .blogs-header-left p {
    font-size: 14px !important;
  }

  .main-blog-overlay {
    padding: 30px;
  }

  .main-blog-overlay h3 {
    font-size: 24px;
  }

  .sidebar-blog-thumb {
    width: 100px;
    height: 75px;
  }

  .sidebar-blog-content h4 {
    font-size: 16px;
  }
}