/* ====== GENERAL STYLES ====== */
:root {
  --primary-color: #0066cc;
  --secondary-color: #ff9900;
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

/* Navbar */

/* ====== BUTTONS ====== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.tombol-wrapper {
  text-align: center;
  margin-top: 20px;
}
.btn-primary:hover {
  background-color: #0055aa;
  color: white;
}

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

.btn-secondary:hover {
  background-color: #e68a00;
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-login {
  padding: 3px 15px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: white;
}

.btn-login:hover {
  background-color: #0055aa;
  color: white;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.btn-google {
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.btn-google:hover {
  background-color: #f2f2f2;
}

.btn-facebook {
  background-color: #3b5998;
  color: white;
}

.btn-facebook:hover {
  background-color: #2d4373;
}

/* ====== HEADER ====== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 15px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 24px;
  margin-bottom: 0;
}

.logo span {
  color: var(--primary-color);
}

.logo a {
  color: var(--dark-color);
}

.logo a:hover {
  text-decoration: none;
  color: var(--dark-color);
}

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

/* nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
} */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
.header-alt {
  background-color: white;
}

/* ====== HERO SECTION ====== */
.hero {
  height: 700px;
  background-image: url('../assets/2.jpeg');
  background-size: cover;
  background-position: center;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero-text {
  max-width: 750px;
  padding: 30px;
}

.hero-text h1 {
  font-size: 50px;
  margin: auto;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  margin: auto;
  margin-bottom: 30px;
}

.hero-text-container {
  background: rgba(255, 255, 255, 0.1); /* Warna putih transparan */
  backdrop-filter: blur(5px); /* Efek blur */
  -webkit-backdrop-filter: blur(10px); /* Support untuk Safari */
  border-radius: 50px;
  padding: 20px 30px;
  display: inline-block;
}

/* ====== QUICK SEARCH ====== */
.quick-search {
  margin-top: -30px;
  margin-bottom: 30px;
}

.search-box {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 50px;
  margin-top: 10px;
}

.search-box h3 {
  text-align: center;
  font-size: 45px;
  margin-bottom: 25px;
}

.search-box form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.form-row {
  display: flex;
  gap: 15px;
  width: 100%;
}

.form-row .form-group {
  flex: 1;
}

/* ====== SECTION COMMON STYLES ====== */
section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

/* ====== ABOUT SECTION ====== */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-text {
  flex: auto;
  margin-top: 30px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  flex: 1;
  min-width: 200px;
}

.feature i {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 10px;
}

.feature h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature p {
  color: var(--gray-color);
}

/* Layanan */
.services {
  background-color: #f9f9f9;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  transition: transform 0.3s;
}

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

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
}

/* ====== DESTINATIONS SECTION ====== */
.destinations {
  background-color: #f8f9fa;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.destination-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.destination-info {
  padding: 20px;
}

.destination-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.destination-info p {
  color: var(--gray-color);
  margin-bottom: 15px;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.destination-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* ====== PACKAGES SECTION ====== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.package-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-img {
  position: relative;
}

.package-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-price {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border-top-left-radius: 10px;
  text-align: right;
}

.package-price span {
  font-size: 12px;
  display: block;
}

.package-price h4 {
  margin-bottom: 0;
  font-size: 16px;
}

.package-content {
  padding: 20px;
}

.package-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.package-details {
  display: flex;
  gap: 15px;
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.package-details i {
  margin-right: 5px;
  color: var(--primary-color);
}

.package-features {
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 15px;
  margin: 15px 0;
}

.package-features li {
  margin-bottom: 8px;
  font-size: 14px;
}

.package-features li:last-child {
  margin-bottom: 0;
}

.package-features li i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials {
  background-color: #f8f9fa;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-gray);
}

.testimonial-item {
  min-width: 350px;
  flex: 1;
}

.testimonial-content {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
}

.rating {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--gray-color);
}

/* ====== NEWSLETTER SECTION ====== */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  padding: 50px 0;
}

.newsletter h2 {
  margin-bottom: 15px;
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form .btn {
  background-color: var(--secondary-color);
}

.newsletter-form .btn:hover {
  background-color: #e68a00;
}

/* ====== CONTACT SECTION ====== */
.contact-wrapper {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 24px;
  color: var(--primary-color);
  min-width: 24px;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--gray-color);
  margin-bottom: 5px;
}

.contact-form {
  flex: 1;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

/* ====== FOOTER ====== */
footer {
  background-color: #222;
  color: #fff;
  padding: 70px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.footer-about {
  flex: 2;
  min-width: 300px;
}

.footer-about h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-about span {
  color: var(--primary-color);
}

.footer-about p {
  color: #ccc;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

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

.footer-links ul li a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 14px;
  color: #aaa;
}

.footer-auth {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
}

.footer-links-inline {
  display: flex;
  gap: 20px;
}

.footer-links-inline a {
  color: #ccc;
  font-size: 14px;
}

.footer-links-inline a:hover {
  color: var(--primary-color);
}

/* ====== AUTH PAGES ====== */
.auth-section {
  padding: 120px 0 70px;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

.auth-container {
  display: flex;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.auth-image {
  flex: 5;
  position: relative;
  display: none;
}

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

.auth-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  color: white;
}

.auth-overlay h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.auth-form {
  flex: 6;
  padding: 40px;
}

.auth-form-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-form-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--light-gray);
  z-index: 1;
}

.divider span {
  background-color: white;
  padding: 0 15px;
  position: relative;
  z-index: 2;
  color: var(--gray-color);
}

.password-field {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--gray-color);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 5px;
}

.forgot-password {
  font-size: 14px;
}

/* ====== MEDIA QUERIES ====== */
@media (min-width: 768px) {
  .auth-image {
    display: block;
  }
}

@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: 0.5s;
    z-index: 999;
  }

  nav ul.show {
    left: 0;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .search-box form {
    flex-direction: column;
  }

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

  .footer-content {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
  }
}
