/**
* Template Name: Selecao - Liburanku Edition (Tropical Theme)
* Updated: 2026
* Description: Fresh, tropical, and dynamic travel website theme using Sun Yellow, Nature Green, and Ocean Blue accents.
* Author: BootstrapMade.com / Customized
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #2b2d42;
  background-color: #f8f9fa;
}

a {
  color: #118ab2;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #06d6a0;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  color: #06d6a0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #118ab2;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #06d6a0;
  color: #fff;
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.4);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#header.header-transparent {
  background: transparent;
  border-bottom: none;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #118ab2;
  text-decoration: none;
  background: linear-gradient(45deg, #118ab2, #06d6a0, #ffd166);
  -webkit-background-clip: text;
  background-clip: text; /* Tambahkan baris standar ini */
  -webkit-text-fill-color: transparent;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 18px;
  margin-left: 5px;
  font-size: 14px;
  color: #4a5568;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
  font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  background: linear-gradient(45deg, #118ab2, #06d6a0);
  color: #fff;
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #4a5568;
  margin: 0 5px;
  font-size: 14px;
  border-radius: 10px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #118ab2;
  background: rgba(6, 214, 160, 0.1);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #118ab2;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  transition: 0.3s;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #4a5568;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
  background: #118ab2;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #f3f4f6;
  box-shadow: none;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #4a5568;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #fff;
  background: #06d6a0;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #e0f2fe 0%, #f0fdf4 50%, #fffbeb 100%);
  padding: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center; /* Perbaikan di sini */
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 85vh;
  padding-top: 60px;
}

#hero h2 {
  color: #073b4c;
  margin-bottom: 25px;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#hero h2 span {
  background: linear-gradient(45deg, #118ab2, #06d6a0, #ffd166);
  -webkit-background-clip: text;
  background-clip: text; /* Tambahkan baris standar ini */
  -webkit-text-fill-color: transparent;
}

#hero p {
  width: 75%;
  animation-delay: 0.4s;
  margin: 0 auto 35px auto;
  color: #4a5568;
  font-size: 18px;
  line-height: 1.6;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: rgba(17, 138, 178, 0.4);
  transition: 0.3s;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  color: #118ab2;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  background: linear-gradient(45deg, #118ab2, #06d6a0);
  border: none;
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.4);
}

#hero .btn-get-started:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ffd166, #06d6a0);
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.5);
  color: #073b4c;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

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

@media (max-width: 768px) {
  #hero .carousel-container {
    height: 90vh;
  }

  #hero h2 {
    font-size: 34px;
  }
  
  #hero p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  background-color: #f8f9fa;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0 0 15px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #06d6a0;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 2px;
  display: inline-block;
  background: linear-gradient(90deg, #06d6a0, #118ab2, #ffd166);
  margin: 4px 10px;
  vertical-align: middle;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #073b4c;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  color: #073b4c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
  color: #4a5568;
}

.about .content ul li+li {
  margin-top: 15px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #06d6a0;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
  color: #718096;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #118ab2;
  background: transparent;
  margin-top: 20px;
  border: 2px solid #118ab2;
}

.about .content .btn-learn-more:hover {
  background: linear-gradient(45deg, #118ab2, #06d6a0);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.4);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background-color: #ffffff;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: 0.3s;
  color: #4a5568;
  background: #f9fafb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 40px;
  color: #06d6a0;
}

.features .nav-link h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #073b4c;
}

.features .nav-link:hover {
  color: #118ab2;
  border-color: #118ab2;
}

.features .nav-link.active {
  background: linear-gradient(45deg, #06d6a0, #118ab2);
  color: #fff;
  border-color: transparent;
  box-shadow: 0px 5px 20px rgba(6, 214, 160, 0.2);
}

.features .nav-link.active i,
.features .nav-link.active h4 {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta (Call to Action)
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(90deg, #fffbeb 0%, #e0f2fe 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta h3 {
  color: #073b4c;
  font-size: 32px;
  font-weight: 800;
}

.cta p {
  color: #4a5568;
  font-size: 16px;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: linear-gradient(45deg, #118ab2, #06d6a0);
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
}

.cta .cta-btn:hover {
  background: linear-gradient(45deg, #ffd166, #06d6a0);
  color: #073b4c;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.3);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background-color: #f8f9fa;
}

.services .icon-box {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  border-color: rgba(6, 214, 160, 0.3);
  box-shadow: 0 15px 35px rgba(17, 138, 178, 0.15);
}

.services .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 35px);
  opacity: 0.1;
}

.services .icon i {
  font-size: 74px;
  line-height: 1;
  transition: 0.5s;
  color: #118ab2;
}

.services .icon-box:hover .icon i {
  color: #ffd166;
}

.services .icon-box:hover .icon {
  opacity: 0.3;
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .title a {
  color: #073b4c;
  transition: ease-in-out 0.3s;
}

.services .icon-box:hover .title a {
  color: #118ab2;
}

.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
  color: #718096;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  background-color: #ffffff;
}

.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 0 10px 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #4a5568;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::before {
  content: "[";
  margin-right: 6px;
  color: rgba(0, 0, 0, 0.1);
}

.portfolio #portfolio-flters li::after {
  content: "]";
  margin-left: 6px;
  color: rgba(0, 0, 0, 0.1);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #118ab2;
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: #ffd166;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  position: relative;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
  width: 100%;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 25px;
  bottom: 15px;
  z-index: 3;
  right: 25px;
  transition: all ease-in-out 0.4s;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(6, 214, 160, 0.2);
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #073b4c;
  font-weight: 700;
  margin-bottom: 3px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #118ab2;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 22px;
  top: calc(50% - 15px);
  color: #118ab2;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #06d6a0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item .testimonial-img {
  width: 80px;
  border-radius: 50%;
  border: 4px solid #118ab2;
  margin: 0 auto 15px auto;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #06d6a0;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 209, 102, 0.3);
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #118ab2;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #118ab2;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 12px;
}

.pricing h4 {
  color: #118ab2;
}

.pricing ul i {
  color: #06d6a0;
}

.pricing .btn-buy {
  border: 2px solid #118ab2;
  color: #118ab2;
}

.pricing .btn-buy:hover {
  background: linear-gradient(45deg, #118ab2, #06d6a0);
  border-color: transparent;
  color: #fff;
}

.pricing .featured {
  border: 2px solid #ffd166;
}

.pricing .featured h3 {
  color: #073b4c;
  background: linear-gradient(45deg, #ffd166, #06d6a0);
}

.pricing .featured .btn-buy {
  background: linear-gradient(45deg, #ffd166, #06d6a0);
  border-color: transparent;
  color: #073b4c;
}

.pricing .featured .btn-buy:hover {
  background: linear-gradient(45deg, #118ab2, #06d6a0);
  color: #fff;
}

.pricing .advanced {
  background: #ffd166;
  color: #073b4c;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list .question {
  color: #118ab2;
}

.faq .faq-list i {
  color: #06d6a0;
}

.faq .faq-list .collapsed {
  color: #073b4c;
}

.faq .faq-list .collapsed:hover {
  color: #118ab2;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member .social a {
  background: linear-gradient(45deg, #118ab2, #06d6a0);
}

.team .member .social a:hover {
  background: linear-gradient(45deg, #ffd166, #06d6a0);
  color: #073b4c;
}

.team .member .member-info span {
  color: #118ab2;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info i {
  background: linear-gradient(45deg, #118ab2, #06d6a0);
}

.contact .info h4 {
  color: #073b4c;
}

.contact .php-email-form .loading:before {
  border: 3px solid #118ab2;
  border-top-color: #ffd166;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #118ab2;
}

.contact .php-email-form button[type=submit] {
  background: linear-gradient(45deg, #118ab2, #06d6a0);
  color: #fff;
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(45deg, #ffd166, #06d6a0);
  color: #073b4c;
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.4);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #073b4c;
  color: #f8f9fa;
}

#footer h3 {
  background: linear-gradient(45deg, #ffd166, #06d6a0, #118ab2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#footer .social-links a {
  background: #0c4f65;
  color: #f8f9fa;
}

#footer .social-links a:hover {
  background: linear-gradient(45deg, #118ab2, #06d6a0);
  color: #fff;
  box-shadow: 0px 4px 12px rgba(6, 214, 160, 0.3);
}