:root {
  /**
   * colors
   */

  --united-nations-blue: #e98e48;
  --bright-navy-blue:#e98e48;
  --gunmetal: #e98e48;
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;
  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
}
/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
}

.btn-primary:is(:hover, :focus) {
  background: var(--yale-blue);
  border-color: var(--yale-blue);
}

.btn-secondary { border-color: var(--white); }

.btn-secondary:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 { color: var(--gunmetal); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-block: 15px;
  z-index: 1;
}

.header.active .header-top {
  position: fixed;
  background: var(--gunmetal);
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}

.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background: var(--bright-navy-blue);
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

.header-top .logo { margin-inline: auto; }

.header-top .logo img { max-width: 100px; }

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.header-bottom { border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); }

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color: var(--white);
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.2); }

.header .btn { --padding: 4px 20px; }
.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}

/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
 background-image: url("../images/travel.png");
  background-color: hsla(0, 0%, 0%, 0.65); /* Darker overlay */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /*background-color: hsla(0, 0%, 100%, 0.427);*/
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
}

.hero-title { 
  font-size: clamp(2.5rem, 5vw, 4.1rem); /* adjusts based on screen size */
  text-align: center;
  margin-bottom: 10px; }

.hero-text {
  color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 40px;
}


/** Service*/

.our-services {
  padding: 60px 20px;
  background-color: #fff7ef;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.our-services h2 {
  font-size: 2.5rem;
  color: #e98e48;
  margin-bottom: 40px;
  font-weight: bold;
}

.services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* New media query for 5 columns */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  max-width: 260px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
}

/*Learn More Button on Service Card*/

.package-description {
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
    margin-bottom: 15px; /* Space between description and button */
  }

  .learn-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fefefe; /* Your brand color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none; /* In case you make it an anchor later */
    transition: background-color 0.3s ease;
  }

  .learn-more-button:hover {
    background-color: #d07a3c; /* A slightly darker shade for hover */
  }

  /* Basic styling for the image grid for preview */
  .image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .image-link {
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 300px; /* Adjust as needed */
  }

  .image-link img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }

/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {
}
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1000px;
    margin-inline: auto;
  }

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text { margin-bottom: 40px; }

  .card-text { --fs-5: 15px; }



  /**
   * HEADER
   */

  .header { padding-top: 83px; }

  .helpline-box .icon-box { padding: 14px; }

  .header-top .logo img { max-width: unset; }

  .search-btn { font-size: 30px; }

  .nav-open-btn { font-size: 40px; }

  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }



  /**
   * HERO
   */

  .hero {
    min-height: 800px;
    padding-top: 85px;
  }

  .hero-text { --fs-5: 15px; }

  .btn-group { gap: 20px; }




  /**
   * POPULAR
   */

  .popular-card .card-content { right: auto; }



  /**
   * FOOTER
   */

.footer {
  width: 100%;
  background-color: #ff9b4f;
  color: white;
  padding-top: 40px;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 1000px;
  max-width: 1000px;
}


.footer-form {
  grid-column: span 2;
}

.footer-bottom {
  text-align: left;
}

.copyright {
  margin-bottom: 0;
}

.footer-bottom-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
}
  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-5: 15px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1000px; }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list { gap: 10px; }
/** Youtube */

.video-section {
  padding: 60px 20px;
  background-color: #fff6ef;
}

.orange-theme .section-title {
  color: #ff6b00;
  font-size: 28px;
  margin-bottom: 15px;
}

.orange-theme .section-text {
  color: #333;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.video-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.video-description {
  flex: 1 1 45%;
  max-width: 600px;
}

.video-embed {
  flex: 1 1 45%;
  max-width: 600px;
}

.video-embed iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/** 2nd youtube video*/
@media (max-width: 768px) {
  .video-layout {
    flex-direction: column;
  }

  .video-description,
  .video-embed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


  /**
   * FOOTER
   */

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .footer-form .input-field { margin-bottom: 0; }

  .footer-form .btn { width: max-content; }


/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1050px; }



  /**
   * HEADER
   */

  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top { display: none; }

  .header-bottom { border-bottom: none; }

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--onyx);
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: var(--transition);
  }

  .header-bottom .container { padding-block: 0; }

  .header .navbar { all: unset; }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list li { border-bottom: none; }

  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }

  .header.active .navbar-link { color: var(--onyx); }

  .header.active .navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

  .header.active .social-link {
    color: var(--onyx);
    border-color: hsla(0, 0%, 0%, 0.15);
  }

  .overlay { display: none; }



  /**
   * HERO
   */

  .hero .container { max-width: 740px; }


  /**
   * POPULAR
   */

  .popular-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * PACKAGE
   */

  .meta-box { --fs-8: 13px; }

  .meta-box > ion-icon { font-size: 15px; }



  /**
   * CTA 
   */

  .cta .section-title { max-width: 25ch; }



  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .footer-form { grid-column: unset; }

  .form-wrapper { flex-direction: column; }

  .footer-form .btn { width: 100%; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */
}
  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

  .image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.image-link {
  flex: 1 1 calc(50% - 40px); /* 2 dalam 1 row */
  max-width: calc(50% - 40px);
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.image-link img {
  max-width: 100%;
  height: auto;
  border: 2px solid orange;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.image-link img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive (1 per row untuk skrin kecil) */
@media screen and (max-width: 600px) {
  .image-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .image-link img {
    width: 90%;
    margin: 0 auto;
  }
}

/**Why Choose Us*/
/* General Section Styling */
.why-us {
  background-color: #fff7ef;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-weight: bold;
}

.why-us h2 {
  font-size: 2rem;
  color: #ff6f00;
  margin-bottom: 30px;
}

/* List Styling */
.tick-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.tick-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.tick-list li i {
  color: #28a745; /* green check */
  font-size: 1.2rem;
  margin-right: 10px;
}

#package {
  margin-bottom: 0rem; /* reduce this */
  padding-bottom: 0rem;
}

#destination {
  margin-top: 0; /* remove extra space */
 padding-top: 0rem; /* or remove */
}
/*FAQ SECTION*/
    .faq-section {
      padding: 2rem;
      background-color: #fff7f0;
      max-width: 10000px;
      margin: 0 auto;
      border-radius: 10px;
    }

    .faq-title {
    font-size: 5.5rem;
    margin-bottom: 10px;
    color: #e98e48;
    animation: slideUp 0.8s ease forwards;
    }

    .faq-item {
      border-bottom: 1px solid #ffd6b0;
      margin-bottom: 1rem;
    }

    .faq-question {
      width: 100%;
      background-color: #ffcc80;
      color: #4e2800;
      padding: 1rem;
      font-size: 1.1rem;
      text-align: left;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .faq-question:hover {
      background-color: #ffb74d;
    }

    .faq-answer {
      padding: 0 1rem;
      margin-top: 0.5rem;
      display: none; /* Hidden by default */
      color: #333;
      font-size: 1rem;
    }

    .faq-answer p {
      margin: 0;
    }

    /*Ticketing Section*/
.ticketing-section {
  padding: 60px 20px;
  background-color: #fff7f0;
  text-align: center;
  animation: fadeIn 1s ease-in;
}

.ticketing-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #e98e48;
  animation: slideUp 0.8s ease forwards;
}

.ticketing-content p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
  animation: slideUp 1s ease forwards;
}

.ticket-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  animation: fadeInUp 1.5s ease-in-out;
}

.ticket-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: cardFadeIn 0.6s ease forwards;
}

.ticket-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.ticket-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
  border: 4px solid #ff6600;
  transition: transform 0.3s ease;
}

.ticket-card:hover img {
  transform: scale(1.1) rotate(2deg);
}

.ticket-card h3 {
  font-size: 1.3rem;
  margin: 12px 0;
  color: #ff6600;
}

.ticket-card p {
  font-size: 0.95rem;
  color: #666;
}

.ticket-card button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background-color: #ff6600;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.ticket-card button:hover {
  background-color: #e65c00;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

