/*-----------------------------------------------------------------------------------

    Template Name: TraveLand - Tour and Travel Agency Template
    Author: UIdeck

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
    02. Header
    03. Hero
    04. Footer

-----------------------------------------------------------------------------------*/

/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #747E88;
}

.squada-one-regular {
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
  color: #EEC41E;
}

a {
  color: #EEC41E;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #38424D;
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 { font-size: 40px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #747E88;
  margin: 0;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== Button =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0 35px;
  font-size: 16px;
  line-height: 50px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #EEC41E;
}

.main-btn:hover {
  background-color: #38424D;
  color: #fff;
}

/*===== Preloader =====*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
}

.loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  margin-top: -32px;
  z-index: 18;
  pointer-events: none;
}

.ytp-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: ytp-spinner-linspin 1568.2352941176ms linear infinite;
  animation: ytp-spinner-linspin 1568.2352941176ms linear infinite;
}

@-webkit-keyframes ytp-spinner-linspin {
  to { -webkit-transform: rotate(360deg); }
}

@keyframes ytp-spinner-linspin {
  to { transform: rotate(360deg); }
}

.ytp-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

@-webkit-keyframes ytp-spinner-easespin {
  12.5% { -webkit-transform: rotate(135deg); }
  25% { -webkit-transform: rotate(270deg); }
  37.5% { -webkit-transform: rotate(405deg); }
  50% { -webkit-transform: rotate(540deg); }
  62.5% { -webkit-transform: rotate(675deg); }
  75% { -webkit-transform: rotate(810deg); }
  87.5% { -webkit-transform: rotate(945deg); }
  to { -webkit-transform: rotate(1080deg); }
}

@keyframes ytp-spinner-easespin {
  12.5% { transform: rotate(135deg); }
  25% { transform: rotate(270deg); }
  37.5% { transform: rotate(405deg); }
  50% { transform: rotate(540deg); }
  62.5% { transform: rotate(675deg); }
  75% { transform: rotate(810deg); }
  87.5% { transform: rotate(945deg); }
  to { transform: rotate(1080deg); }
}

.ytp-spinner-left,
.ytp-spinner-right {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  opacity: .99;
}

.ytp-spinner-left {
  left: 0;
  right: 50%;
}

.ytp-spinner-right {
  left: 50%;
  right: 0;
}

.ytp-spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  border-color: #EEC41E #EEC41E transparent;
  border-radius: 50%;
  border-width: 6px;
}

.ytp-spinner-left .ytp-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: transparent;
  -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.ytp-spinner-right .ytp-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: transparent;
  -webkit-animation: ytp-spinner-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: ytp-spinner-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

@-webkit-keyframes ytp-spinner-left-spin {
  0% { -webkit-transform: rotate(130deg); }
  50% { -webkit-transform: rotate(-5deg); }
  to { -webkit-transform: rotate(130deg); }
}

@keyframes ytp-spinner-left-spin {
  0% { transform: rotate(130deg); }
  50% { transform: rotate(-5deg); }
  to { transform: rotate(130deg); }
}

@-webkit-keyframes ytp-spinner-right-spin {
  0% { -webkit-transform: rotate(-130deg); }
  50% { -webkit-transform: rotate(5deg); }
  to { -webkit-transform: rotate(-130deg); }
}

@keyframes ytp-spinner-right-spin {
  0% { transform: rotate(-130deg); }
  50% { transform: rotate(5deg); }
  to { transform: rotate(-130deg); }
}

/*===== Back to top =====*/
.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  background-color: #EEC41E;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}

.back-to-top:hover {
  color: #fff;
  background-color: #38424D;
}


/*===========================
    2. HEADER css
===========================*/
.header_area {
  position: relative;
}

.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 15px 0;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.navbar {
  padding: 0;
  position: relative;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar-toggler .toggler-icon {
  background-color: #38424D;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -7px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 5px 20px;
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media (max-width: 991px) {
  .navbar-nav .nav-item {
    margin-left: 0;
  }
}

.navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .navbar-nav .nav-item a {
    color: #38424D;
    display: block;
  }
}

.navbar-nav .nav-item.active > a,
.navbar-nav .nav-item:hover > a {
  color: #EEC41E;
}

@media (max-width: 991px) {
  .navbar-nav .nav-item.active > a,
  .navbar-nav .nav-item:hover > a {
    color: #EEC41E;
  }
}

.sticky .navbar-nav .nav-item a {
  color: #38424D;
}

.sticky .navbar-nav .nav-item.active > a,
.sticky .navbar-nav .nav-item:hover > a {
  color: #EEC41E;
}


/*===========================
    3. HERO css
===========================*/
.header_slider {
  position: relative;
}

.single_slider {
  height: 800px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .single_slider {
    height: 650px;
  }
}

.single_slider::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 24, 43, 0.4);
  z-index: -1;
}

.slider_content {
  margin-top: 100px;
}

.slider_content .slider_title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 767px) {
  .slider_content .slider_title {
    font-size: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider_content .slider_title {
    font-size: 44px;
  }
}

.slider_content p {
  font-size: 18px;
  color: #fff;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .slider_content p {
    font-size: 16px;
  }
}

.slider_content .main-btn {
  margin-top: 40px;
}


/*===========================
    4. FOOTER css
===========================*/
.footer_area {
  background-color: #041221;
}

.footer_widget {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer_about p {
  color: #fff;
  margin-top: 40px;
}

.footer_about .social {
  margin-top: 35px;
}

.footer_about .social li {
  display: inline-block;
  margin-right: 15px;
}

.footer_about .social li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer_about .social li a.social_1:hover { background-color: #3B5998; }
.footer_about .social li a.social_2:hover { background-color: #38A1F3; }
.footer_about .social li a.social_3:hover { background-color: #E1306C; }
.footer_about .social li a.social_4:hover { background-color: #0077B5; }

.footer_title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 767px) {
  .footer_title {
    font-size: 20px;
  }
}

.footer_link {
  width: 50%;
}

.footer_link .link {
  padding-top: 30px;
}

.footer_link .link li {
  margin-top: 15px;
}

.footer_link .link li a {
  font-size: 16px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer_link .link li a:hover {
  color: #EEC41E;
}

.footer_subscribe p {
  color: #fff;
  margin-top: 45px;
}

.footer_subscribe .subscribe_form {
  position: relative;
  margin-top: 30px;
}

.footer_subscribe .subscribe_form input {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  padding: 0 25px;
  border: 0;
  color: #38424D;
}

.footer_subscribe .subscribe_form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #EEC41E;
  border: 0;
  font-size: 18px;
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
/*===========================
    CUSTOM SERVICES ARROW
===========================*/
#services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#services ul li {
  font-size: 15px;
  color: #747E88;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px; /* Memberikan ruang di sebelah kiri untuk tanda panah */
}

#services ul li::before {
  content: '→'; /* Karakter tanda panah */
  position: absolute;
  left: 0;
  top: 0;
  color: #EEC41E; /* Warna emas asli template */
  font-weight: bold;
}
REGISTRATION PROCESS STYLE
===========================*/
.process-timeline-wrapper {
  position: relative;
}

.process-step-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2f7;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(7, 24, 43, 0.08);
  border-color: #EEC41E;
}

.process-step-card .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: rgba(238, 196, 30, 0.1); /* Warna emas transparan */
  color: #EEC41E; /* Warna emas utama */
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.process-step-card:hover .step-number {
  background-color: #EEC41E;
  color: #fff;
}

.process-step-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #38424D;
  margin-bottom: 15px;
}

.process-step-card p {
  font-size: 14px;
  color: #747E88;
  line-height: 1.6;
}


  }
}
/*======================================================
    DARK THEME PREMIUM - REGISTRATION PROCESS & CONTACT
======================================================*/

/* Penyelarasan Garis Navigasi Utama */
.header_navbar, .sticky {
  border-bottom: 1px solid rgba(0, 240, 255, 0.2) !important;
  background-color: #030e1a !important;
}

/* --- THEME CONTACT SECTION --- */
.contact-section {
  background-color: #030e1a; /* Hitam kebiruan gelap pekat */
  padding: 100px 0;
}

.contact-box {
  background: transparent;
  padding: 0;
}

.contact-box h2 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.contact-box .section-desc {
  color: #8fa0b5;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Style Input Form */
.contact-box label {
  color: #8fa0b5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.contact-box label span {
  color: #00f0ff;
}

.contact-box .form-control {
  background-color: #051628 !important;
  border: 1px solid #0d2844 !important;
  border-radius: 6px;
  height: 55px;
  color: #ffffff !important;
  padding: 0 20px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-box textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.contact-box .form-control::placeholder {
  color: #3f5873;
}

.contact-box .form-control:focus {
  border-color: #00f0ff !important;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
  outline: none;
}

/* Tombol Submit Request (Cyan Biru / Sesuai Tombol Request Quotation) */
.submit-btn {
  background-color: #00f0ff;
  color: #030e1a;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  height: 55px;
  padding: 0 35px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #ffffff;
  color: #030e1a;
  transform: translateY(-2px);
}

/* --- SIDEBAR INFO BOX STYLE --- */
.info-box {
  background-color: #041221;
  border: 1px solid #0d2844;
  border-radius: 12px;
  padding: 40px 30px;
}

.whatsapp-box .icon-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  font-size: 28px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.info-box h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.info-box p {
  color: #8fa0b5;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Tombol Hijau Whatsapp */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #2ecc71;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  height: 55px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #27ae60;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Direct Contact List */
.direct-contact-box .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  border-bottom: 1px solid #0d2844;
  padding-bottom: 15px;
}

.direct-contact-box .contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.direct-contact-box .contact-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: #00f0ff;
  border-radius: 50%;
  text-align: center;
  line-height: 43px;
  font-size: 16px;
}

.direct-contact-box small {
  color: #4f6f94;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
}

.direct-contact-box h6 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 2px;
}