@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary-bg: #f4f4f4;
  --primary-text: #333;
  --accent: #ff7f00;
  --accent-hover: #e67300;
  --navbar-bg: #fff;
  --navbar-border: #ddd;
  --whatsapp: #25d366;
  --whatsapp-hover: #18dac3;
  --footer-bg: #848484;
  --card-shadow: rgba(236, 234, 234, 0.1);
}


html,
body {
  background-color: var(--primary-bg);
  color: var(--primary-text);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

h2 {
  font-size: 1.3rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-family: 'Poppins', sans-serif;
}

.navbar .navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--navbar-bg);
  border-bottom: 1px solid var(--navbar-border);
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
  height: 40px;
}

.navbar .navbar-nav {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 1000px) {
  .navbar .navbar-nav {
    padding-top: 10px;
    gap: 0px;
  }
}

.btn-outline-secondary:hover {
  color: white !important;
  background-color: var(--accent-hover) !important;
}

.navbar .navbar-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  padding: 3px 0;
  letter-spacing: 0.2px;
  color: #444;
  font-weight: 400;
  transition: all 0.2s ease;
}

.title {
  font-size: 1.2rem;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  text-transform: uppercase !important;
  color: var(--accent) !important
}

.subtitle {
  font-size: 1rem;
  font-weight: 400 !important;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  color: #444444de !important;
}

.navbar .navbar-nav a:hover {
  color: #ff7f00;
}

.nav-item {
  justify-content: center;
  text-align: center;
  display: flex;
}

.navbar-nav .nav-item.active .nav-link {
  color: #ff7f00;
  font-weight: bold;
}


@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 2%;
  }

  .navbar .navbar-brand img {
    height: 35px;
  }

  .navbar .navbar-nav a {
    font-size: 0.8rem;
    padding: 4px 0;
  }
}

main {
  padding-top: 70px;
}

@media (max-width: 768px) {
  main {
    padding-top: 60px;
  }
}


.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: var(--whatsapp);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: var(--card-shadow);
}

.card-img-top {
  object-fit: cover;
  height: 200px;
}

.card-body {
  text-align: center;
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.card-footer {
  background-color: transparent;
  border-top: none;
}

.btn-primary {
  background-color: var(--accent);
  border: 2px solid var(--accent);
  color: white;
  padding: 10px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;

  font-size: 1rem;
  font-weight: 400 !important;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-style: dashed;
  font-weight: bold;
  border-radius: 25px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent-hover);
  transform: scale(1.05);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: white;
  transform: scale(1.05);
}

.card-footer p {
  margin: 5px 0;
  color: #666;
  font-size: 0.9rem;
}

.partner-logo {
  max-width: 70px;
  height: auto;
  margin: 15px 0;
  transition: transform 0.1s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
}

#internationalDestinations {
  background: #f4f4f4;
  padding-bottom: 3%;
}

#domesticDestinations {
  background: #f4f4f4;
  padding-bottom: 3%;
}

#jelajahi {
  background: #ffffff;
}

#hightlight {
  background: #ffffff;
}

#mitra {
  padding-top: 0px;
  margin-top: -100px;
}

#mitra .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.partner-logo {
  margin: 15px 0;
}

@media (max-width: 768px) {
  .partner-logo {
    margin: 5px 0;

  }
}

.social-icons i {
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #ff7f00;
}


@media (max-width: 768px) {
  .col-md-4 {
    width: 100%;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-body,
  .card-footer {
    padding: 15px;
  }
}

#galeri {
  padding-bottom: 3%;

}

.padding_zero {
  padding: 0;
}

#gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}

#gallery img:hover {
  transform: scale(1.05);
}

#imageModal .modal-content {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#imageModal .modal-header {
  border-bottom: none;
}

#imageModal .modal-body {
  text-align: center;
}

#imageModal .modal-footer {
  border-top: none;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #000000 !important;
}

footer a:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .social-icons {
    text-align: center;
  }

  .social-icons a {
    margin: 0 0.5rem;
  }
}

.bg-dark {
  background-color: #848484 !important;
}

hr {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .social-icons a {
    transition: none;
  }
}

.email-link {
  color: inherit;
  text-decoration: none;
}

.text-center {
  color: black;

}

#galeri {
  background-color: #fff;
}


.btnn {
  background-color: #ffffff;
  border: 2px solid #ff7f00;
  color: rgb(0, 0, 0);
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btnn:hover {
  background-color: #ff7f00;
  border-color: #ff7f00;
  color: rgb(255, 255, 255);
  transform: scale(1.05);
}

.header-section {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 90px;
}

.header-section h3 {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  margin-right: 90px;


}

.header-section p {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;

}

@media (max-width: 767px) {
  .header-section h3 {
    font-size: 24px;

  }

  .header-section p {
    font-size: 14px;

  }
}


.contact-details {
  font-size: 15px;

}

.galeri-thumb {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.galeri-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-content img {
  width: 100%;
  height: auto;
}

#company {
  padding: 10%;
  margin: 4%;
  align-items: end;
}

.Corporate-image {
  margin-bottom: 10%;
}

#about {
  padding: 10%;
  margin-bottom: 0%;
}

.dropdown-item {
  padding: 10px !important;
}

.navbar .dropdown-toggle::after {
  display: none !important;
}

.navbar .dropdown-toggle i,
.navbar .dropdown-toggle svg {
  transition: transform 0.2s;
  vertical-align: middle;
}

/* .navbar .dropdown-toggle.show i,
.navbar .dropdown-toggle.show svg {
  transform: rotate(180deg);
} */

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;

  }
}

.navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  outline: none;
  cursor: pointer;
}

.navbar-toggler {
  border: none;
  outline: none;
  cursor: pointer;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.responsive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-destination {
  transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
  margin-bottom: 30px;
}

.card-destination:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.card-destination a {
  text-decoration: none !important;
}

.card-destination .card-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.08);
}

.card-destination .card-body {
  background-color: white;
  width: 100%;
  min-height: 150px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: -40px;
  padding-top: 40px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);

  font-size: 0.8em;
  font-weight: 400 !important;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  color: #444444de !important;
}


.card-destination .card-body .title {
  font-size: 1rem;
  color: var(--accent) !important;
  padding: 10px 10px 0px 10px;
}

.card-destination .card-body .subtitle {
  font-size: 0.8rem;
}

.card-destination .card-body .card-footer,
.detail-card-destination .card-footer {
  border-top-color: var(--accent) !important;
  border-top-width: 1px;
  border-top-style: dotted;
  margin-top: 10px;
  padding: 10px 20px;
}

.card-destination .card-body .card-footer .icon,
.detail-card-destination .card-footer .icon {
  color: var(--accent);
  width: 20%;
  text-align: justify
}

.card-destination .card-body .card-footer,
.detail-card-destination .card-footer {
  font-size: 0.8em;
  display: flex;
  flex-wrap: wrap;
}

.card-destination .card-body .card-footer .description {
  flex-basis: 100%;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  display: flex;
}

.detail-card-destination .card-footer .description {
  flex-basis: 100%;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  display: flex;
  padding-left: 40px;
  margin-bottom: 10px;
}

.swiper-pagination.show-md {
  display: none !important;
}

.swiper-pagination-bullet-active {
  color: var(--accent) !important;
  background: var(--accent) !important;
}

@media (max-width: 999px) {
  .swiper-pagination.show-md {
    display: inline-block !important;
  }
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  overflow: visible !important;
}


.testimonial-wrapper {
  max-width: 500px;
  margin: 60px auto;
  position: relative;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 70px 30px 30px;
  text-align: center;
}

.testimonial-name {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
}

.testimonial-title {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 15px;
}

.testimonial-message {
  font-style: italic;
  color: #555;
}

.text-primary {
  color: var(--accent) !important;
}


/* galler page */
.gallery-img-wrapper {
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.gallery-img-wrapper:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-img {
  object-fit: cover;
  width: 100%;
  height: 220px;
  transition: filter 0.3s;
}

.gallery-img-wrapper:hover .gallery-img {
  filter: brightness(0.92) saturate(1.2);
}

/* end gallery */

.dropdown-item.active {
  background-color: unset;
  color: var(--accent) !important;
}

/* detail page */
.detail-card-destination {
  margin: 20px 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.detail-card-destination img {
  width: 40%;
  border-radius: 20px;
  min-height: 300px;
  object-fit: cover;
  z-index: 10;
}

.detail-card-destination .body {
  width: 60%;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-left: -30px;
  padding-left: 40px;
  padding-top: 10px;
  padding-right: 10px;
  align-items: center;
  text-align: center;
}

.detail-card-destination .detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1000px) {
  .detail-card-destination img {
    width: 100%;
  }

  .detail-card-destination {
    margin: 20px 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }


  .detail-card-destination .body {
    width: 100%;
    margin-left: 0px;
    padding-left: 0px;
    padding-top: 40px;
    margin-top: -30px;
  }

  .detail-card-destination .card-footer .description {
    flex-basis: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
  }

  .nav-item.dropdown {
    display: block;
  }
}

/* Accordion custom styles for detail page */
.accordion .accordion-item {
  border: 1px solid var(--accent);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion .accordion-header {
  background: #fff;
}

.accordion .accordion-button {
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: none;
  outline: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}

.accordion .accordion-button:not(.collapsed) {
  background: var(--accent);
  color: #fff;
}

.accordion .accordion-button:focus {
  box-shadow: 0 0 0 2px var(--accent);
}

.accordion .accordion-button::after {
  color: var(--accent);
}

.accordion .accordion-button:not(.collapsed)::after {
  color: #fff;
}

.accordion .accordion-body {
  background: #fff;
  color: var(--primary-text);
  border-top: 1px solid var(--accent);
}

.divider {
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin: 24px auto;
  display: block;
}

.text-second {
  color: #444444de !important;
}


.slider-hightlight {
  max-height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: 10px;
  max-width: 1200px;
  margin: auto;
}