/* ========================================================================== */
/* Base / Global Styles                                                       */
/* ========================================================================== */

body, html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background-color: rgb(228, 228, 222);
  font-family: 'Josefin Sans', sans-serif;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  color: black;
}

h1 {
  font-size: 4.3rem; 
  line-height: 5rem;
}

h2 {
  font-size: 4rem; 
}

h3 {
  font-size: 3rem; 
}

h4 {
  font-size: 2.4rem; 
}

h5 {
  font-size: 1.5rem; 
}

p, span, li {
  font-size: 1rem; 
  font-weight: 400;
  font-family: 'Josefin Sans', sans-serif;
  color: black;
  line-height: 1.2rem;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #555; 
}

a:active {
  color: #333; 
}

.button-link {
  text-decoration: none;
  color: black;
  background-color: #ffbb00;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  border: none;

  /* smoother transitions */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.button-link:hover {
  background-color: #e6a800; 
  color: black;
}

.button-link:active {
  transform: scale(0.95); 
}

.button-link:focus {
  outline: none; 
  transform: scale(1.05); 
}

.section-title {
  font-size: 1rem;
  padding-bottom: 10px;
  color: #4c6328;
}

.section-subtitle {
  padding-bottom: 10px;
  font-size: 3rem;
}

/* -- Base: responsive (≤1400px) -------------------------------------------- */
@media (max-width: 1400px) {
  h1 { font-size: 4rem; line-height: 5.2rem; }
  h2 { font-size: 3.8rem; }
  h3 { font-size: 2.7rem; }
  h4 { font-size: 2.2rem; }
  h5 { font-size: 1.3rem; }
  a  { font-size: 0.9rem; }

  .section-title    { font-size: 1rem; }
  .section-subtitle { font-size: 2.8rem; }

  /* modal belongs to the page globally */
  .modal-content { width: 70%; }
}

/* -- Base: responsive (≤1024px) -------------------------------------------- */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
  h2 { font-size: 3.5rem; }
  h3 { font-size: 2.5rem; }
  h4 { font-size: 2rem; }
  h5 { font-size: 1.2rem; }
  a, p { font-size: 0.8rem; }

  .button-link {
    padding: 8px 16px;
  }

  .section-title { font-size: 0.9rem; }
  .section-subtitle { font-size: 2.4rem; }
}

/* -- Base: responsive (≤768px) --------------------------------------------- */
@media (max-width: 768px) {
  h1 { font-size: 2.6rem; line-height: 4rem; }
  h2 { font-size: 2.6rem; }
  h3 { font-size: 2.2rem; }
  h4 { font-size: 1.7rem; }
  h5 { font-size: 1rem; }

  a, p { font-size: 0.7rem; }

  .button-link { padding: 7px 14px; }

  .section-title { font-size: 0.8rem; }
  .section-subtitle { font-size: 2rem; }
}

/* -- Base: responsive (≤440px) --------------------------------------------- */
@media (max-width: 440px) {
  h1 { font-size: 2.2rem; line-height: 3.2rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.8rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1rem; }

  a, p { font-size: 0.9rem; }

  .button-link { padding: 6px 12px; }

  .section-title { font-size: 0.8rem; }
  .section-subtitle { font-size: 1.7rem; }
}

/* ========================================================================== */
/* Landing Section                                                            */
/* ========================================================================== */

.landing {
  background-image: url(images/landing-background3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #4B5C35;
  position: relative;
  flex-direction: column;
  padding: 0 30px;
  box-sizing: border-box;
  overflow-x: hidden;
  padding-top: 70px;
}

.logo {
  position: absolute;
  top: 20px;
  cursor: pointer;
}

.logo img {
  width: 130px;
  margin: 0 auto;
}

.landing-text {
  max-width: 1024px;
  text-align: left;
}

.landing-title h1 {
  color: white;
  margin-bottom: 20px;
}

.landing-title-text {
  color: #ffbb00;
  font-size: 4.3rem;
}

.landing-title p {
  color: white;
  font-size: 1.2rem;
  margin: 0 auto;
  opacity: 0.9;
}


/* -- Booking Search --------------------------------------------------------- */

.booking-search {
  width: 100%;
  margin: 30px auto;
  padding: 35px 0px 15px 0px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1024px;
  text-align: left;
}

.booking-option-buttons {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.landing-search-btns {
  padding: 12px 32px;
  border: none;
  border-radius: 12px;
  background: none;
  color: white;
  cursor: pointer;
  background-color: #a7aaa323;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.267);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.landing-search-btns i {
  font-size: 1rem;
}

.landing-search-btns.active-search {
  background: rgba(228, 228, 222, 0.577);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.landing-search-btns.active-search:hover {
  background: rgba(228, 228, 222, 0.752);
}

.landing-search-btns:hover {
  background-color: #a7aaa341;
}

.landing-search-content {
  width: 100%;
}

.landing-filter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.filter-placeholder {
  width: 100%;
  height: auto;
  opacity: 0.8;
  border-radius: 10px;
}

/* -- Landing: responsive (≤1400px) ----------------------------------------- */
@media (max-width: 1400px) {
  .landing-title-text { font-size: 4rem; }
  .landing-title p    { font-size: 1.1rem; }
  .logo img           { width: 110px; }
}

/* -- Landing: responsive (≤1024px) ----------------------------------------- */
@media (max-width: 1024px) {
  .logo img { width: 100px; }
  .landing-title-text { font-size: 3.2rem; }
  .landing-title p { font-size: 1rem; }
}

/* -- Landing: responsive (≤768px) ------------------------------------------ */
@media (max-width: 768px) {
  .landing { height: 100vh; }

  .landing-title h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .landing-title-text {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .landing-title p { font-size: 0.8rem; }

  .booking-search {
    margin: 15px auto;
    padding: 15px 0px 10px 0px;
  }

  .landing-search-btns { padding: 10px 25px; }

  .landing-search-btns i { font-size: 0.7rem; }
}

/* -- Landing: responsive (≤440px) ------------------------------------------ */
@media (max-width: 440px) {
  .landing {
    height: 100vh;
    padding: 0 20px;
  }

  .landing-title h1 {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .landing-title-text {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .landing-title p { font-size: 0.95rem; }

  .landing-text { padding-top: 60px; }

  .booking-search {
    margin: 12px auto;
    padding: 12px 0px 8px 0px;
  }

  .booking-option-buttons { gap: 10px; }

  .landing-search-btns {
    padding: 10px 22px;
    border-radius: 6px;
  }

  .landing-search-btns i { font-size: 0.6rem; }
}

/* -- Landing: forced fixes ------------------------------------------- */

@media (max-width: 428px) {
  .landing {
    height: 105vh;
    padding: 0 20px;
  }

  .landing-text { padding-top: 100px; }
}

/* Narrower ~410px devices */
@media (max-width: 410px) {
  .landing {
    height: 115vh;
    padding: 0 20px;
  }

  .landing-text { padding-top: 100px; }
}

/* iPhone X/12/13/14 standard (375px) */
@media (max-width: 375px) {
  .landing {
    height: 120vh;
    padding: 0 15px;
  }

  .landing-text { padding-top: 100px; }

  .booking-option-buttons { gap: 6px; }

  .landing-search-btns {
    padding: 10px 22px;
    gap: 8px;
  }
}

/* Old small devices (320px) */
@media (max-width: 320px) {
  .landing-text { padding-top: 350px; }
}



/* ========================================================================== */
/* Trip Options (4 Boxes Section)                                             */
/* ========================================================================== */

.trip-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  top: 30px; 
  z-index: 10;
  padding: 0 30px;
}

.trip-box {
  max-width: 300px;
  height: 300px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  color: white;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.trip-box:hover {
  transform: translateY(-50px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.trip-box:hover::before {
  background: rgba(0, 0, 0, 0.7);
}

.umrah {
  background-image: url('images/info-box-1.jpg');
}

.palestine {
  background-image: url('images/info-box-2.webp');
}

.morocco {
  background-image: url('images/info-box-3.jpg');
}

.turkey {
  background-image: url('images/info-box-4.jpg');
}

.trip-box h3,
.trip-box p,
.trip-box a,
.trip-box button {
  position: relative;
  z-index: 2;
}

.trip-options h5 {
  margin-bottom: 10px;
  color: white;
  z-index: 10;
}

.trip-box p {
  color: white;
  margin-bottom: 15px;
}

.trip-box a {
  display: block;
  padding: 10px;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.trip-box a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

/* .info-btn {
  display: block;
  margin-top: 10px;
  background: none;
  border: 1px solid white;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 5px 15px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  font-size: 0.8rem;
}

.info-btn:hover {
  background: rgba(255, 255, 255, 0.3);
} */


/* -- Trip Options: responsive (≤1200px) ------------------------------------ */
@media (max-width: 1200px) {
  .trip-options { flex-wrap: wrap; }

  .trip-box {
    width: 250px;   /* Adjusted width */
    height: 230px;  /* Square shape */
    padding: 18px;
  }

  .trip-box:hover {
    transform: translateY(-20px); /* smaller lift on hover */
  }
}

/* -- Trip Options: responsive (≤1024px) ------------------------------------ */
@media (max-width: 1024px) {
  .trip-box {
    width: 250px;   /* Adjusted width */
    height: 230px;  /* Square shape */
    padding: 15px;
  }
}

/* -- Trip Options: responsive (≤768px) ------------------------------------- */
@media (max-width: 768px) {
  .trip-box {
    width: 220px;
    height: 220px;
  }
}


/* ========================================================================== */
/* About                                                                      */
/* ========================================================================== */

.about {
  max-width: 1400px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
  padding: 80px 80px;
  gap: 20px;
}

.about-c1 {
  width: 45%;
}

.about-c1 p {
  color: black;
  padding: 30px 0;
  line-height: 1.5rem;
}

.about-c2 {
  width: 45%;
  display: flex;
  justify-content: center; 
  align-items: center;   
  position: relative;    
}

.large-image {
  width: 500px; 
  height: 350px; 
  border-radius: 20px; 
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.small-image {
  width: 300px;
  height: 220px;
  z-index: 10;
  margin-top: -120px;
  margin-left: -90px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-package-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.view-package-button a {
  font-weight: bold;
}

.view-package-button img {
  width: 20px;
}


/* -- About: responsive (≤1400px) ------------------------------------------- */
@media (max-width: 1400px) {
  .about { padding: 130px 60px; }

  .large-image {
    width: 400px;
    height: 300px;
  }

  .small-image {
    width: 270px;
    height: 200px;
    margin-top: -80px;
    margin-left: -60px;
  }
}

/* -- About: responsive (≤1024px) ------------------------------------------- */
@media (max-width: 1024px) {
  .about {
    padding: 100px 50px;
    gap: 50px;
  }

  .large-image {
    width: 350px;
    height: 280px;
  }

  .small-image {
    width: 250px;
    height: 180px;
    margin-top: -70px;
    margin-left: -50px;
  }
}

/* -- About: responsive (≤768px) -------------------------------------------- */
@media (max-width: 768px) {
  .about { display: block; }

  .about-c1 {
    width: 100%;
    margin-bottom: 50px;
  }

  .about-c2 {
    width: 100%;
    padding: 0 40px;
  }
}

/* -- About: responsive (≤440px) -------------------------------------------- */
@media (max-width: 440px) {
  .large-image {
    width: 280px;
    height: 250px;
  }

  .small-image {
    width: 230px;
    height: 170px;
    margin-top: -70px;
    margin-left: -70px;
  }
}


/* ========================================================================== */
/* Package                                                                    */
/* ========================================================================== */

.package-wrapper {
  background: linear-gradient(to bottom, #212a15, #3a4b1e);
  padding: 80px 0;
}

.group-trip-intro {
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.group-trip-title {
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
}

.group-trip-desc {
  color: white;
  line-height: 1.6;
  max-width: 650px;
  margin: 20px auto;
  opacity: 0.9;
}

.group-trip-line {
  width: 100px;
  height: 4px;
  background-color: #4B5C35;
  margin: 20px auto;
  border-radius: 2px;
}

.package {
  max-width: 1600px;
  display: flex;
  align-items: start;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 80px;
}

.package-c1 {
  width: 30%;
}

.package-stamp {
  background-color: #ffbb00;
  padding: 8px 20px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 40px;
}

.package-c1 h4 {
  color: white;
  margin-bottom: 40px;
  line-height: 3rem;
}

.package-c1 p {
  color: white;
  line-height: 1.8rem;
}

.package-c2 {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 15px; 
}

.info-box-row {
  display: flex;
  justify-content: space-between; 
  gap: 15px; 
  align-items: stretch; 
}

.info-box {
  flex: 1; 
  background-color: #353a2d;
  border-radius: 10px;
  padding: 30px;
  display: flex; 
  flex-direction: column;
  justify-content: flex-start; 
  box-sizing: border-box; 
}

.info-box-img {
  padding: 8px 8px;
  background-color: #4c6328;
  border-radius: 5px;
  text-align: center;
}

.info-box-img img {
  width: 40px;
}

.info-box-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 30px 0;
  gap: 25px;
}

/* keep as-is to preserve current visuals */
.info-box-header h5, p {
  color: white;
  line-height: 1.5rem;
}

.info-box-6 {
  flex: 1; 
  background-color: #353a2d;
  border-radius: 10px;
  padding: 30px;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
  box-sizing: border-box; 
}

/* -- Package: responsive (≤1400px) ----------------------------------------- */
@media (max-width: 1400px) {
  .package-wrapper { padding: 60px 0; }
}

/* -- Package: responsive (≤1200px) ----------------------------------------- */
@media (max-width: 1200px) {
  .package {
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    padding: 0 80px;
  }

  .package-c1 {
    width: 100%;
    text-align: center;
  }

  .package-stamp { margin: 0 auto; }

  .package-c1 h4 { margin-bottom: 30px; }

  .package-c1 p { margin-bottom: 30px; }

  .package-c2 {
    width: 100%;
    gap: 25px;
  }
}

/* -- Package: responsive (≤1024px) ----------------------------------------- */
@media (max-width: 1024px) {
  .package-wrapper { padding: 40px 0; }

  .group-trip-intro {
    margin-bottom: 30px;
    padding: 10px 10px;
  }

  .group-trip-title { font-size: 2rem; }
}

/* -- Package: responsive (≤768px) ------------------------------------------ */
@media (max-width: 768px) {
  .group-trip-title { font-size: 1.8rem; }

  .package { padding: 0 30px; }

  .info-box-row { display: block; }

  .info-box { margin-bottom: 15px; }

  .info-box:last-child { margin-bottom: 0; }

  .info-box-img img { width: 20px; }

  .info-box-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 20px 0;
    gap: 15px;
  }
}

/* -- Package: responsive (≤440px) ------------------------------------------ */
@media (max-width: 440px) {
  .group-trip-title { font-size: 1.4rem; }

  .content .des {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 8px 0;
  }

  .package-list { padding: 2px; }
}



/* ========================================================================== */
/* Pricing                                                                    */
/* ========================================================================== */

.pricing-wrapper {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.pricing-wrapper h5 {
  font-size: 1rem;
  padding-bottom: 10px;
}

.pricing-wrapper h3 {
  padding-bottom: 40px;
  color: white;
}

.pricing {
  margin: 0 auto;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  margin-top: 50px;
}

/* -- Carousel Container ----------------------------------------------------- */

.container {
  width: 1200px;
  height: 600px;
  background: #f5f5f5;
  box-shadow: 0 30px 50px #dbdbdb1c;
  position: relative; 
  margin: auto; 
  border-radius: 15px;
}

.container .slide .item{
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #5050500d;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: 0.5s; /* unchanged */
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.slide .item:nth-child(3){
  left: 50%;
}
.slide .item:nth-child(4){
  left: calc(50% + 220px);
}
.slide .item:nth-child(5){
  left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
  left: calc(50% + 660px);
  opacity: 0;
}

/* -- Slide Content ---------------------------------------------------------- */

.item .content{
  position: absolute;
  top: 50%;
  left: 100px;
  max-width: 500px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
}

.slide .item:nth-child(2) .content{
  display: block;
}

.group-package-date{
  margin-top: 50px; 
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
}
.group-package-month {
  margin-top: 10px; 
  color: white;
}

.content .name{
  font-size: 1.8rem;
  text-transform: uppercase;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
  padding: 15px 0;
}

.content button{
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
  border-radius: 10px;
}

.package-list {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px;
}

.package-list img {
  width: 20px;
}

/* -- Slide In Keyframes ----------------------------------------------------- */

@keyframes animate {
  from{
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
  }
  to{
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
  }
}

/* -- Carousel Controls ------------------------------------------------------ */

.pricing-button{
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

.pricing-button button{
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #000;
  transition: 0.3s; /* unchanged */
}

.pricing-button button:hover{
  background: #ababab;
  color: #fff;
}

/* CTA inside active slide */
.home-book-btn {
  color: #000;
  background-color: white;
  border-radius: 10px;
  padding: 10px 20px;
}

/* -- Pricing: responsive (≤1400px) ----------------------------------------- */
@media (max-width: 1400px) {
  .group-package-date { font-size: 1.6rem; }
}

/* -- Pricing: responsive (≤1200px) ----------------------------------------- */
@media (max-width: 1200px) {
  .pricing-wrapper {
    max-width: 100%;
    padding: 70px 0;
  }

  .pricing { margin-top: 0; }

  .container {
    width: 900px;
    height: 600px;
  }

  .container .slide .item {
    top: 60%;
    transform: translate(0, -60%);
  }

  .item .content {
    max-width: 300px;
    left: 50px;
  }
}

/* -- Pricing: responsive (≤1024px) ----------------------------------------- */
@media (max-width: 1024px) {
  .pricing-wrapper { padding: 70px 0; }

  .pricing { margin-top: 0; }

  .container {
    width: 700px;
    height: 500px;
  }

  .container .slide .item {
    top: 60%;
    transform: translate(0, -60%);
  }

  .item .content { left: 25px; }

  .group-package-date {
    margin-top: 20px;
    font-size: 1.5rem;
  }

  .group-package-month { margin-top: 10px; }

  .content .name { font-size: 20px; }

  .content button {
    padding: 7px 14px;
    font-size: 0.7rem;
  }

  .package-list img { width: 20px; }

  .des h2 { font-size: 2.5rem; }

  .pricing-button button {
    width: 30px;
    height: 25px;
  }
}

/* -- Pricing: responsive (≤768px) ------------------------------------------ */
@media (max-width: 768px) {
  .pricing-wrapper { padding: 40px 0; }

  .container {
    max-width: 600px;
    height: 400px;
  }

  .container .slide .item {
    width: 130px;
    height: 200px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
  }

  .slide .item:nth-child(1),
  .slide .item:nth-child(2) {
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 0;
  }

  .slide .item:nth-child(3) { left: calc(55% + 20px); }
  .slide .item:nth-child(4) { left: calc(55% + 170px); }
  .slide .item:nth-child(5) { left: calc(55% + 320px); }

  .slide .item:nth-child(n + 6) {
    left: calc(55% + 470px);
    opacity: 0;
  }

  .item .content { left: 25px; }

  .group-package-date {
    margin-top: 10px;
    font-size: 1rem;
  }

  .group-package-month { margin-top: 10px; }

  .content .name { font-size: 20px; }

  .content button {
    padding: 7px 14px;
    font-size: 0.6rem;
  }

  .package-list img { width: 15px; }

  .des h2 { font-size: 2rem; }
}

/* -- Pricing: responsive (≤440px) ------------------------------------------ */
@media (max-width: 440px) {
  .item .content { left: 15px; }

  .group-package-date {
    margin-top: 20px;
    font-size: 1rem;
  }

  .group-package-month { margin-top: 8px; }

  .content .name { font-size: 1.1rem; }

  .content button {
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.6rem;
  }

  .des h2 { font-size: 1.7rem; }
}


/* ========================================================================== */
/* FAQs                                                                       */
/* ========================================================================== */

.faq-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 50px 80px;
  margin-top: 50px;
  text-align: center;
}

.faq-title {
  margin-bottom: 70px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #dedfdc;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
}

.faq-question p {
  margin: 0;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  line-height: 1.5rem;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: black;
  line-height: 1.5rem;
  text-align: left;
}

.faq-item.open .faq-answer {
  padding: 15px 20px;
  display: block;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

/* -- FAQs: responsive (≤768px) --------------------------------------------- */
@media (max-width: 768px) {
  .faq-section { padding: 50px 40px; }
}


/* ========================================================================== */
/* Contact Form                                                               */
/* ========================================================================== */

.contact-form-section {
  color: #fff;
  padding: 40px 0px;
  text-align: center;
  background-color: rgb(201, 201, 192);
}

.contact-form-section h5 {
  font-size: 1rem;
  padding-bottom: 10px;
}

.contact-form-section h3 {
  padding-bottom: 50px;
}

form {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 80px;
  box-sizing: border-box;
  border-radius: 8px;
}

.contact-first-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.form-row {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
}

.form-row label {
  font-size: 16px;
  margin-bottom: 5px;
  color: black;
}

.form-row input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #DEDFDC;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #a1b78e;
  outline: none;
}

.form-row2 {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-row2 textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #DEDFDC;
}

.form-row2 label {
  font-size: 16px;
  margin-bottom: 5px;
  color: black;
}

.form-row input,
.form-row textarea {
  margin-right: 10px;
}

/* -- Contact Form: responsive (≤1024px) ------------------------------------ */
@media (max-width: 1024px) {
  .booking-form-row {
    flex-direction: column;
    gap: 0;
  }

  .booking-form-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .booking-form-included {
    text-align: left;
    margin-left: 10px;
  }
}

/* -- Contact Form: responsive (≤768px)  ---------------------------------------------- */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-row input,
  .form-row textarea {
    margin-bottom: 10px;
  }
}

/* -- Contact Form: responsive (≤768px) ------------------------------------- */
@media (max-width: 768px) {
  .booking-form-included {
    text-align: center;
    margin-left: 0px;
  }

  .contact-first-row { display: block; }

  .form-row { width: 100%; }
}

