@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');


body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Section spacing */
.section {
  padding: 80px 0;
}

/* ===== TRAVEL PARTNER BUTTON ===== */

.btn-travel {
  background: #0099D7;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  display: inline-block;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.btn-travel:hover {
  background: #007fb3;
  /* slightly darker */
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 153, 215, 0.35);
}

/* Click Effect */
.btn-travel:active {
  transform: scale(0.96);
}

.btn-travel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.btn-travel:hover::before {
  left: 120%;
}




.fade-up {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* =====================Header-section===================== */
.header {
  transition: all 0.3s ease;
  background: transparent;
}

/* Scroll ke baad */
.header.scrolled {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}



.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: #333;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

.btn-book {
  background: #0d6efd;
  color: #fff;
  border-radius: 25px;
  padding: 8px 20px;
}


/* =====================Hero-section===================== */
.hero {
  position: relative;

  .hero-slide {
    height: 600px;
    object-fit: cover;
  }

  .hero-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
  }

  .hero-form {
    width: 550px;
    margin-left: auto;
    /* pushes right */
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
  }

  .hero-form-container {
    z-index: 2;
  }

  input,
  select,
  textarea {
    border-radius: 20px;
    font-size: 14px;
  }
}

/* ===== HERO SLIDER INDICATORS UI ===== */

.carousel-indicators {
  bottom: 30px;
  gap: 10px;
}

.carousel-control-next,
.carousel-control-prev {
  width: 5%;
}

/* normal bullets */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  opacity: 1;
  transition: all 0.4s ease;
}

/* hover effect */
.carousel-indicators [data-bs-target]:hover {
  background-color: #ffffff;
  transform: scale(1.2);
}

/* active bullet (current slide) */
.carousel-indicators .active {
  width: 30px;
  height: 12px;
  border-radius: 20px;
  background: #28a745;
  /* travel green color */
  transform: scale(1.1);
}

.carousel-indicators [data-bs-target] {
  backdrop-filter: blur(6px);
}

.carousel-indicators {
  bottom: 15px;
}

/************* HOW IT WORKS ***************/
.how-work {
  text-align: center;
}

/* top small title */
.mini-title {
  color: #0099D7;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.mini-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #39d353;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
}

/* main heading */
.main-title {
  font-size: 34px;
  color: #333;
}

/* step box */
.step-box {
  padding: 20px;
}

/* STEP TEXT */
.step-text {
  color: #0099D7;
  font-weight: 600;
  font-size: 14px;
}

/* icon box */
.step-icon {
  width: 90px;
  height: 90px;
  background: #dfe6ee;
  border-radius: 12px;
  margin: 15px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  font-size: 34px;
  color: #0099D7;
}

/* heading */
.step-box h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* paragraph */
.step-box p {
  color: #777;
  font-size: 14px;
  max-width: 240px;
  margin: auto;
}


/************* experience ***************/
.experience-section {
  background: #EFFFED;
  /* light green background */
}

.section-title {
  color: #2c8dbd;
  font-weight: 600;
  position: relative;
  padding-bottom: 0px;
  margin-bottom: 30px;
}

.section-title::after {
  content: "";
  width: 120px;
  height: 3px;
  background: #7cc242;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.experience-section img {
  border-radius: 6px;
}


/************* services ***************/


.service-top {
  color: #2c8dbd;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.service-top::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #7cc242;
  display: block;
  margin: 6px auto 0;
}

.service-subtitle {
  color: #666;
  max-width: 600px;
  margin: auto;
  font-size: 15px;
}

.service-card {
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}

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

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h5 {
  font-weight: 600;
}

.service-card p {
  color: #777;
  font-size: 14px;
}

.service-links {
  display: flex;
  justify-content: space-between;
}

.service-links a:first-child {
  color: #7cc242;
  text-decoration: none;
  font-weight: 500;
}

.service-links a:last-child {
  color: #2c8dbd;
  text-decoration: none;
  font-weight: 500;
}

/* ===== FLIGHT PACKAGES ===== */

.flight-packages {
  background: #f8fbff;
}



.section-title::after {
  content: "";
  width: 140px;
  height: 3px;
  background: #28a745;
  position: absolute;
  left: 0;
  bottom: -6px;
}



/* Card */
.flight-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.flight-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.flight-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #28a745;
}

.flight-card .desc {
  color: #777;
  margin-bottom: 15px;
}

/* Hover Effect */
.flight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Button */
.btn-flight-card {
  background: linear-gradient(45deg, #0d6efd, #28a745);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-flight-card:hover {
  color: #fff;
  background: linear-gradient(45deg, #28a745, #0d6efd);
}

.hero-form {
  background: #ffffff;
  padding: 15px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-form h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-form label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #555;
}

.hero-form .form-control,
.hero-form .form-select {
  height: 30px;
  font-size: 12px;
  border-radius: 8px;
  padding: 6px 10px;
}

.hero-form textarea.form-control {
  height: 70px;
  resize: none;
}

.hero-form .btn-travel {
  background: #0d8ecf;
  color: #fff;
  border-radius: 25px;
  padding: 8px 25px;
  font-size: 16px;
  font-weight: 500;
}

.hero-form .row {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 10px;
}

.flight-usp {
  background: #f4f8ff;
  padding: 70px 0;
}

.usp-card {
  background: #fff;
  padding: 15px 10px;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.usp-card h5 {
  font-size: 1rem;
  color: #0099d7;
  font-wait: 600
}

.usp-card p {
  font-size: 15px
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.usp-row {
  gap: 25px;
}

.usp-icon {
  width: 65px;
  height: 65px;
  background: #0099d7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #fff;
  font-size: 26px;
}


.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #28a745;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}


/* ===== Card Design ===== */
.spiritual-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  transition: .4s ease;
  height: 100%;
}

.spiritual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}


/* ===== Image ===== */
.card-img {
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .5s;
}

.spiritual-card:hover img {
  transform: scale(1.08);
}


/* ===== Content ===== */
.card-content {
  padding: 22px;
}

.card-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}


/* ===== Button ===== */
.book-btn {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(45deg, #0d6efd, #00bcd4);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.book-btn i {
  margin-right: 6px;
}

.book-btn:hover {
  background: linear-gradient(45deg, #28a745, #20c997);
  transform: scale(1.05);
  color: #fff;
}

/* ===== Itinerary Section ===== */

.itinerary-section {
  background: #f8fbff;
}

/* timeline wrapper */
.itinerary-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
}

/* vertical line */
.itinerary-wrapper::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e0e0e0;
}

/* item */
.itinerary-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 35px;
}

/* day badge */
.day-badge {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, #0d6efd, #28a745);
  color: #fff;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

/* content card */
.itinerary-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  transition: .3s;
}

.itinerary-content h5 {
  margin-bottom: 8px;
  color: #0d6efd;
  font-weight: 600;
}

.itinerary-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* hover effect */
.itinerary-item:hover .itinerary-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}




/************* services ***************/






.faq-section {
  background: #fff;
}

.faq-title {
  color: #2c8dbd;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.faq-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #7cc242;
  display: block;
  margin: 6px auto 0;
}

.faq-subtitle {
  color: #777;
  max-width: 600px;
  margin: auto;
}

/* Accordion Style */
.accordion-item {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 500;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: #2c8dbd;
  background: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}



/************* services ***************/

.testimonial-section {
  background: #EFFFED;

  /* ===== TESTIMONIAL SECTION ===== */

  .testimonial-section {
    background: #f8fbff;
  }

  /* wrapper */
  .testimonial-wrapper {
    position: relative;
  }

  /* card */
  .testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 60px 25px 30px;
    margin: 20px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    position: relative;
    height: 400px;
  }

  /* center slide highlight */
  .slick-center .testimonial-card {
    transform: scale(1.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
  }

  /* user image */
  .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  }

  /* content */
  .testi-content h3 {
    color: #0099D7;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 21px;
  }

  .testi-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 15px 0;
  }

  /* arrows */
  .testi-prev,
  .testi-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #0099d7;
    color: #fff;
    font-size: 20px;
    z-index: 10;
    transition: .3s;
  }

  .testi-prev {
    left: -10px;
  }

  .testi-next {
    right: -10px;
  }

  .testi-prev:hover,
  .testi-next:hover {
    background: #28a745;
  }

  /* hide default slick outline */
  .testimonial-slider .slick-slide {
    opacity: .6;
    transition: .3s;
  }

  .testimonial-slider .slick-center {
    opacity: 1;
  }

}

.testi-title {
  color: #2c8dbd;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* GREEN UNDERLINE */
.testi-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #7cc242;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  border-radius: 2px;
}

.testi-sub {
  max-width: 600px;
  margin: auto;
  color: #666;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin: 20px;
}

.user-img {
  width: 230px;
  height: 260px;
  object-fit: cover;
}

.testi-content {
  padding: 25px;
  text-align: left;
}

.testi-content h3 {
  font-weight: 700;
}

/* Center slide highlight */
.slick-center {
  transform: scale(1.05);
  transition: .4s;
}

.slick-slide {
  transition: .4s;
}

.slick-center {
  opacity: 1;
}


/************* services ***************/
.footer-section {
  background: #1f8db7;
  color: #fff;
}

.footer-logo {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  opacity: .9;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: .9;
  transition: .3s;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
  transition: .3s;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.3);
  margin-top: 30px;
}

.footer-contact {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.footer-contact:hover {
  text-decoration: underline;
}




/****************************************************************************** mobile ************************************************************/
@media(max-width:768px) {
  .top-strip {
    font-size: 10px !important;
  }

  .btn-travel {
    padding: 7px 20px;
    font-size: 12px;
  }

  .navbar-brand {
    width: 33%;

    img {
      height: 50px;
    }
  }
.navbar-toggler{    order: 1;}
.icon-circle {
  width: 30px !important;
  height: 30px !important;
  font-size: 14px !important; 
}
  .hero {
    .hero-form {
      width: 100%;
      box-shadow: inherit;
      background: #e3f2e2;
    }

    .hero-slide {
      height: 310px;
    }

    .hero-form-container {
      position: inherit;
      top: inherit;
      left: inherit;
      transform: inherit;
      padding: 30px;
    }
  }



  .itinerary-wrapper::before {
    left: 15px;
  }

  .itinerary-item {
    padding-left: 55px;
  }

  .day-badge {
    font-size: 12px;
    padding: 6px 10px;
  }
}