/* =========================
   Google Fonts Import
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================
   Global Styles
   ========================= */
body {
  overflow-x: hidden;
  opacity: 0;
}

body.loaded {
  opacity: 1;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  backface-visibility: hidden;
}

picture, img {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
}

/* =========================
   Global Container
   ========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =========================
   Enhanced Scroll Animations 
   ========================= */

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform, opacity;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.scroll-up-visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform, opacity;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-left.scroll-up-visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform, opacity;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right.scroll-up-visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.7);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform, opacity;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.scale-in.scroll-up-visible {
  opacity: 1;
  transform: scale(1);
}

.blur-in {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform, opacity, filter;
}

.blur-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.blur-in.scroll-up-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s !important;
}
.delay-2 {
  transition-delay: 0.4s !important;
}
.delay-3 {
  transition-delay: 0.6s !important;
}
.delay-4 {
  transition-delay: 0.8s !important;
}
.delay-5 {
  transition-delay: 1s !important;
}
.delay-6 {
  transition-delay: 1.2s !important;
}

.hero-text {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform, opacity;
}

.hero-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text.scroll-up-visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  overflow-y: scroll;
}

/* =========================
   Hero Section
   ========================= */
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-image: url("../static/home.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-bg {
  display: none;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(7, 33, 28, 0) 0%,
    rgba(7, 33, 28, 0.3) 30%,
    rgba(7, 33, 28, 0.6) 60%,
    rgba(7, 33, 28, 0.8) 80%,
    rgba(7, 33, 28, 0.9) 90%,
    #042b2f 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.1s ease-out;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  width: 100%;
}

.hero-section h1 {
  font-size: 2.65em;
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
  color: white;
  margin: 0.2em 0;
}

.hero-section p {
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: normal;
  color: white;
  margin: 0.2em 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

/* Packages Section */
.packages-section {
  background-color: #042b2f;
  color: white;
  padding: 80px 20px;
  text-align: center;
  height: auto;
  min-height: 750px;
}

.packages-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.packages-section h1 {
  font-size: 2.6em;
  margin-bottom: 50px;
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
}

.package-list {
  display: flex;
  justify-content: center;
  text-align: left;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  color: black;
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 1em;
}

.package-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  height: 440px;
  width: 380px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.package-card:hover {
  transform: scale(0.95) translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.package-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.package-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.pkg-info {
  padding: 20px;
  background: white;
  transition: all 0.4s ease;
}

.package-card:hover .pkg-info {
  background: #f8f8f8;
}

.pkg-info h3 {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  padding: 0;
  color: black;
  text-align: left;
  transition: color 0.3s ease;
}

.package-card:hover .pkg-info h3 {
  color: #07a59d;
}

.package-list b {
  text-align: left;
  color: #00a498;
  font-family: "Montserrat";
  font-size: 1.4em;
  font-weight: bold;
}

.image-container {
  position: relative;
  width: 100%;
  height: 275px;
  overflow: hidden;
}

.image-label {
  position: absolute;
  bottom: 15px;
  right: 10px;
  background: #bc262a;
  color: white;
  padding: 6px 12px;
  font-family: "Montserrat";
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 0px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  transition: all 0.3s ease;
}

.package-card:hover .image-label {
  transform: scale(1.05);
  background: #a02024;
}

/******************** Package Overview Section ********************/
.package-overview {
  max-width: 1200px;
  margin: -75px auto 0;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

.itinerary,
.niah {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  color: #2a2722;
}

.package-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  width: 100%;
}

.package-container .image {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
}

.package-container .image img {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.package-container .image:hover img {
  transform: scale(1.03);
}

.package-container .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.package-container h1 {
  font-size: 2.6em;
  color: #07a59d;
  margin: 0;
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
  text-align: center;
  transition: color 0.3s ease;
}

.package-container:hover h1 {
  color: #058a82;
}

.package-container p {
  font-size: 1em;
  margin: 0;
  font-family: "Montserrat";
  line-height: 1.6;
  text-align: center;
}

.offer-section h3 {
  font-size: 1.1em;
  color: black;
  margin-bottom: 15px;
  font-family: "Montserrat";
  font-weight: bold;
  text-align: center;
}

.offer-section p {
  font-size: 1em;
  margin: 0;
  font-family: "Montserrat";
  text-align: center;
}

/******************** Itinerary Section ********************/
.itinerary {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.day {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
}

.day .image {
  overflow: visible !important;
  border-radius: 10px;
}

.day .image img {
  width: 565px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.8s ease;
}

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

.day .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1200px;
}

.day h4 {
  font-size: 1em;
  color: black;
  margin: 0;
  font-family: "Montserrat";
  font-weight: bold;
}

.day h3 {
  font-size: 1.5em;
  color: black;
  margin: 0;
  font-family: "Montserrat";
  font-weight: bold;
  transition: color 0.3s ease;
}

.day:hover h3 {
  color: #07a59d;
}

.day p {
  font-size: 1em;
  margin: 0;
  font-family: "Montserrat";
  line-height: 1.5;
}

.day ul {
  list-style: none; 
  padding-left: 0; 
  margin: 0;
}

.day li {
  padding: 3px 0;
  padding-left: 20px; 
  position: relative;
  font-family: "Montserrat";
  font-size: 1em;
  transition: transform 0.3s ease;
  text-align: left; 
}

.day li:hover {
  transform: translateX(5px);
}

.day li:before {
  content: "•";
  color: black;
  position: absolute;
  left: 0;
}

/******************** Day 2 ********************/
.day2 {
  max-width: 1200px;
  flex-direction: row-reverse;
  text-align: right;
  position: relative;
  margin-bottom: -20px !important; 
  z-index: 1000;
}

.day2 .image {
  position: relative;
  z-index: 1002;
  border-radius: 10px;
  overflow: visible !important;
  margin-top: -100px !important; 
}

.day2 .image img {
  position: relative;
  z-index: 1003;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/******************** Book Button ********************/
.book-btn {
  background-color: #dbaf3b;
  width: 175px;
  height: 50px;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 0.9em;
  font-family: "Plus Jakarta Sans";
  font-weight: bolder;
  cursor: pointer;
  margin-top: 10px;
  align-self: flex-end;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #042b2f;
}

/******************** Niah Section ********************/
.niah {
  position: relative;
  background-color: #042b2f;
  width: 100%;
  text-align: center;
  padding: 140px 0 80px !important; 
  box-sizing: border-box;
  overflow: visible;
  z-index: 1; 
}

.niah::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #042b2f;
  z-index: -1;
}

.niah .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.niah h1 {
  color: white;
  margin-bottom: 30px;
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
  font-size: 2.5em;
  text-align: center;
}

.niah p {
  font-size: 1em;
  font-family: "Montserrat";
  font-weight: lighter;
  line-height: 1.6;
  color: white;
  text-align: center;
  max-width: 1200px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

.niah p b {
  font-weight: bold;
  color: white;
}

.niah .book-btn {
  background-color: #dbaf3b;
  width: 175px;
  height: 50px;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 0.9em;
  font-family: "Plus Jakarta Sans";
  font-weight: bolder;
  cursor: pointer;
  margin: 40px auto;
  display: block;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s !important;
  animation: none !important;
}

.niah .book-btn:hover {
  transform: scale(0.95);
}

/******************** Enhanced Carousel Styles ********************/
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
  overflow: hidden; 
  border-radius: 10px;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 220px;
  gap: 25px; 
  padding: 0; 
  box-sizing: border-box;
  flex-wrap: nowrap;
  justify-content: center; 
  align-items: center;
  width: 100%; 
}

.carousel-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.carousel-track img.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.carousel-track img.fade-in {
  opacity: 0;
  transform: scale(1.05);
}

.carousel-track img.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-track img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.carousel-track img:nth-child(1),
.carousel-track img:nth-child(2),
.carousel-track img:nth-child(3),
.carousel-track img:nth-child(4) {
  display: block;
}

/******************** Our Services Section ********************/
.our-services {
  padding: 60px 20px;
  background-color: #e9e4d9;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-container h1 {
  font-size: 2.5rem;
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
  color: #07a59d;
  margin-bottom: 20px;
}

.services-description {
  font-size: 1rem;
  font-family: "Montserrat";
  font-weight: normal;
  color: black;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.service-card {
  padding: 20px 10px;
  border-radius: 10px;
  transition: background-color 0s ease !important;
}

.service-card:hover {
  background: white;
  transform: none;
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.5rem;
  font-family: "Montserrat";
  font-weight: bold;
  color: black;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #07a59d;
}

.service-card p {
  font-family: "Montserrat";
  font-weight: normal;
  color: black;
  line-height: 1.6;
  font-size: 1.1rem;
  transition: transform 0.3s ease 0.1s;
}

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

.services-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
}

.services-footer p {
  font-family: "Montserrat";
  font-weight: normal;
  color: black;
  line-height: 1.7;
  font-size: 1rem;
}

/******************** About Us Section ********************/
.about-us-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 20px 0 20px;
  box-sizing: border-box;
  color: #2a2722;
}

.company-info h2 {
  font-size: 2em;
  color: #07a59d;
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
}
.company-info p {
  margin-bottom: 15px;
  font-size: 1em;
  font-family: "Montserrat";
}

.vision-mission {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 50px 0;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}
.vision-mission .image img {
  width: 580px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.vision-mission .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.vision-mission h3 {
  font-size: 1.5em;
  margin: 0 0 5px 0;
  padding-left: 30px;
  color: #32555b;
  font-weight: bold;
  font-family: "Montserrat";
}
.vision-mission p {
  font-size: 1em;
  margin: 0;
  padding-left: 30px;
  font-family: "Montserrat";
}

.leadership {
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  text-align: right;
  gap: 20px;
  margin-top: -100px;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.leadership img {
  width: 580px;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0px;
  margin-top: 10px;
}

.leadership h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  padding-right: 30px;
  color: #32555b;
  font-weight: bold;
  font-family: "Montserrat";
}
.leadership p {
  padding-right: 30px;
  font-size: 1em;
  font-family: "Montserrat";
}
.leadership p b {
  font-size: 1em;
  font-weight: bold;
  font-family: "Montserrat";
}

.mother-company {
  width: 100vw;
  background-color: #fcf5eb;
  padding: 110px 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.mother-company .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
}

.mother-company h3 {
  font-size: 1.5em;
  color: #020203;
  margin-bottom: 0;
  font-family: "Montserrat";
  font-weight: bold;
}
.mother-company p {
  font-size: 2em;
  margin-bottom: 0px;
  color: #07a59d;
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
}
.mother-company .reg-no {
  color: #2a2722;
  font-size: 1em;
  font-family: "Montserrat";
  margin-top: 0px;
}

.mother-company .company-history,
.mother-company .experience,
.mother-company .expansion {
  color: #2a2722;
  font-size: 1em;
  font-family: "Montserrat";
}

.animate-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-slide {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.animate-fade.appear,
.animate-slide.appear {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================
   Enhanced Mobile Carousel Transitions
   ========================= */
@media (max-width: 768px) {
  .carousel-container {
    margin: 10px 0 0 0;
    padding: 0 15px 50px;
    box-sizing: border-box;
    text-align: center;
    height: auto; 
    position: relative;
    overflow: visible !important;
  }

  .carousel-track {
    width: 100%;
    height: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .carousel-track img {
    width: 95%;
    height: auto;
    aspect-ratio: 16/9; 
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    opacity: 0; 
    transition: opacity 0.6s ease;
  }

  .carousel-track img.active {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .carousel-track img:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .carousel-track img.fade-out {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }

  .carousel-track img.fade-in {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .carousel-indicators {
    position: absolute;
    bottom: -30px !important; 
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 9999;
    padding: 15px 0;
    background: none;
  }
  
  .carousel-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid white;
    opacity: 0.6;
  }
  
  .carousel-indicator.active {
    background: white;
    opacity: 1;
    transform: scale(1.3);
    border: 2px solid white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
  
  .carousel-indicator:hover {
    opacity: 0.9;
    transform: scale(1.3);
  }
}

/* =========================
   Responsive Design - Mobile (max-width: 768px)
   ========================= */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-section {
    height: 70vh;
    background-attachment: fixed;
    padding-top: 100px;
  }

  .hero-overlay {
    padding-top: 40px;
    animation: none;
  }

  .hero-section h1 {
    font-size: 1.8em;
    text-align: center;
  }

  .hero-section p {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
  }

  .packages-section {
    padding: 40px 15px 80px;
    height: auto;
    text-align: center;
    margin-bottom: 0;
  }

  .packages-section h1 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
  }

  .package-list {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .package-card {
    width: 100% !important;
    max-width: 264px !important;
    height: auto;
    margin: 0 auto;
    flex: 0 0 auto !important;
    min-width: 264px !important;
  }

  .package-card img {
    height: auto;
    aspect-ratio: 16/11;
    object-fit: cover;
    object-position: center;
  }

  .image-container {
    height: auto;
    aspect-ratio: 16/11;
    overflow: hidden;
  }

  .pkg-info h3 {
    text-align: center;
  }

  .package-list b {
    text-align: center;
    display: block;
  }

  .package-overview {
    margin: -40px auto 0;
    padding: 0 15px;
    text-align: center;
  }

  .package-container .image {
    position: relative;
    top: -30px;
    z-index: 2;
    margin-bottom: -30px;
  }

  .package-container .image img {
    height: auto;
    aspect-ratio: 4/3; 
    max-height: 200px; 
    object-fit: cover;
    object-position: center;
  }

  .itinerary {
    padding: 20px 15px;
    gap: 60px !important;
    text-align: center;
    margin-top: -20px;
    position: relative;
    z-index: 1;
  }

  .day {
    flex-direction: column;
    gap: 30px !important;
    text-align: center;
    align-items: center;
    margin-bottom: 40px !important;
  }

  .day .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/11; 
    max-height: 250px;
    object-fit: cover;
    object-position: center;
  }

  .day2 {
    flex-direction: column;
    margin-bottom: 0 !important;
    text-align: center;
    z-index: auto !important;
    margin-top: 40px !important;
    gap: 65px !important;
  }
  
  .day2 .image {
    position: relative !important;
    z-index: auto !important;
  }
  
  .day2 .image img {
    position: static !important;
    z-index: auto !important;
    box-shadow: none !important;
  }

  .day .text {
    text-align: center;
    align-items: center;
    gap: 15px !important;
  }

  .day ul {
    list-style: disc;
    list-style-position: inside;
    padding-left: 0;
    margin: 15px 0;
    text-align: center;
  }

  .day li {
    text-align: center;
    padding-left: 0;
    position: relative;
    margin-bottom: 8px;
  }

  .day li:before {
    display: none;
  }

  .book-btn {
    align-self: center;
    width: 160px;
    height: 45px;
    font-size: 0.85em;
    margin: 25px auto !important;
  }

  .niah {
    padding: 60px 0 100px !important;
    text-align: center;
    overflow: visible; 
    z-index: auto !important;
  }

  .niah h1 {
    font-size: 2em;
    text-align: center;
  }

  .niah p {
    text-align: center;
  }

  .our-services {
    padding: 40px 15px;
    text-align: center;
  }

  .services-container h1 {
    font-size: 2em;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .service-card {
    padding: 15px;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
  }

  .service-card h3,
  .service-card p {
    text-align: center;
  }

  .service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain; 
  }

  .about-us-container,
  .vision-mission,
  .leadership,
  .mother-company .container {
    max-width: 100%;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .company-info h2 {
    padding-top: 40px;
    font-size: 1.8em;
    text-align: center;
  }

  .company-info p {
    text-align: center;
  }

  .vision-mission {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 30px 0;
  }

  .vision-mission .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 29/20; 
    object-fit: cover;
    object-position: center;
  }

  .vision-mission h3,
  .vision-mission p {
    padding-left: 0;
    text-align: center;
  }

  .leadership {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    position: static;
  }

  .leadership img {
    width: 100%;
    height: auto;
    aspect-ratio: 29/20; 
    object-fit: cover;
    object-position: center;
  }

  .leadership h3,
  .leadership p {
    padding-right: 0;
    margin-top: auto;
    padding-left: 0;
    text-align: center;
  }

  .mother-company {
    width: 100vw;
    padding: 60px 0;
    margin: 0;
    overflow-x: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    text-align: center;
  }

  .mother-company .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    align-items: center;
  }

  .mother-company h3 {
    font-size: 1.3em;
    text-align: center;
  }

  .mother-company p {
    font-size: 1.5em;
    text-align: center;
  }

  .mother-company .reg-no,
  .mother-company .company-history,
  .mother-company .experience,
  .mother-company .expansion {
    text-align: center;
  }

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

  .hero-overlay {
    animation: none;
  }

  .package-card:hover,
  .service-card:hover {
    transform: none;
  }

  @media (hover: none) {
    .package-card:hover,
    .service-card:hover,
    .day:hover h3,
    .package-card:hover .pkg-info h3 {
      transform: none;
      color: inherit;
    }

    .package-card:hover img {
      transform: none;
    }
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.5em;
    text-align: center;
  }

  .hero-section p {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
  }

  .packages-section h1,
  .package-container h1,
  .niah h1,
  .services-container h1 {
    font-size: 1.7em;
    text-align: center;
  }

  .package-card {
    max-width: 100%;
  }

  .packages-section {
    padding: 40px 15px 70px;
  }

  .package-card img {
    height: 180px;
  }

  .image-container {
    height: 180px;
  }

  .package-overview {
    margin: -30px auto 0;
  }

  .package-container .image {
    top: -20px;
    margin-bottom: -20px;
  }

  .package-container .image img {
    max-height: 180px;
  }

  .itinerary {
    margin-top: -15px;
  }

  .carousel-container {
    height: 200px;
    margin: 15px auto 0;
    padding: 0 15px 10px; 
  }

  .carousel-track img {
    max-height: 160px;
  }

  .carousel-indicators {
    bottom: -25px; 
  }

  .carousel-indicator {
    width: 4px; 
    height: 4px;
  }

  .services-grid {
    gap: 20px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
  }

  .service-icon img {
    width: 70px;
    height: 70px;
  }

  .service-card h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .service-card p {
    font-size: 1rem;
    text-align: center;
  }

  .book-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

  /* Landscape mode optimization */
  @media (orientation: landscape) and (max-width: 768px) {
    .carousel-container {
     margin: 20px auto 0;
     padding: 0 10px 5px;
    }
  
    .carousel-track {
      height: 220px; 
    }
  
    .carousel-track img {
      width: 80vw; 
      max-width: 350px; 
      height: 180px; 
    }
  }

  /* Small phone landscape mode */
  @media (orientation: landscape) and (max-height: 500px) {
    .carousel-track {
      height: 200px;
    }
  
    .carousel-track img {
      height: 160px;
      max-width: 320px;
      width: 75vw;
    }
  }