/* =============================
   RESET & BASE
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =============================
   HEADER & NAV
============================= */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav-menu a.active {
  color: #d32f2f;
}

.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* =============================
   WHATSAPP FLOAT BUTTON
============================= */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =============================
   HERO & BOOKING BOX
============================= */
.hero {
  background: #f5f5f5;
  padding: 40px 0;
}

.booking-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.booking-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #333;
}

.iframe-container {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

/* Default: tampil Desktop */
.iframe-desktop {
  display: flex;
  width: 100%;
  height: 400px;
  border: none;
}

.iframe-mobile {
  display: none;
  width: 100%;
  height: 320px;
  border: none;
}

/* =============================
   FEATURED DESTINATIONS
============================= */
.featured {
  padding: 40px 0;
}

.featured h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.destination-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.destination-card .card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.destination-card h4 {
  margin-bottom: 8px;
}

.destination-card p {
  margin-bottom: 15px;
}

.destination-card .card-btn {
  display: flex;
  justify-content: center;
}

.destination-card .btn-primary {
  background: #b22222;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.destination-card .btn-primary:hover {
  background: #8b1a1a;
}

/* =============================
   TESTIMONIALS
============================= */
.testimonials {
  background: #0d47a1;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch; /* semua kotak sama tinggi */
}

.testimonial-card {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* animasi */
}

.testimonial-card:hover {
  transform: translateY(-8px); /* naik sedikit */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* bayangan lebih tegas */
}

.testimonial-footer {
  margin-top: auto;       /* footer selalu di bawah */
  text-align: center;     /* biar bintang & nama rata tengah */
}

.testimonial-footer .rating i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.testimonial-card:hover .rating i {
  transform: scale(1.2); /* bintang agak membesar */
  color: #ffbf00; /* warna bintang lebih terang */
}

.testimonial-footer h4 {
  font-size: 16px;
  font-weight: bold;
  color: #0d47a1;
}

.rating {
  color: #ffd700;
}

/* CTA Section */
.cta {
  background: #600000; /* maroon gelap */
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Tombol CTA Gradien + Shadow */
.cta .btn-primary {
  display: inline-block;
  padding: 12px 28px;
  margin: 8px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #b71c1c, #600000); /* gradien merah-maroon */
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.cta .btn-primary:hover {
  background: linear-gradient(135deg, #922b21, #400000); /* gradien lebih gelap */
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}


/* =============================
   FOOTER
============================= */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer .social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

footer .social-links a {
  color: #fff;
  text-decoration: none;
}

/* =============================
   PROFILE PAGE
============================= */
.profile-section {
  padding: 60px 20px;
  background: #fff;
  text-align: justify;
  line-height: 1.8;
}

.profile-section .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.profile-gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.profile-gallery img:hover {
  transform: scale(1.05);
}

/* =============================
   PAKET PAGE
============================= */
.paket {
  padding: 60px 20px;
  background: #f9f9f9;
}

.paket h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.paket-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.paket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.paket-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.paket-card .card-content {
  flex: 1;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.paket-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.paket-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.paket-card .btn-primary {
  background: #e63946;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.paket-card .btn-primary:hover {
  background: #c62f3e;
}

.pagination {
  text-align: center;
  margin-top: 2rem;
}
.pagination a {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}
.pagination a:hover {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
}
.pagination a.active {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
}

/* ============================
   Rekomendasi (Index & All)
============================ */
.rekomendasi {
  padding: 50px 20px;
  background: #f9f9f9;
}

.rekomendasi .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.rekomendasi .section-header h3 {
  font-size: 1.8rem;
  color: #333;
}

.rekomendasi .lihat-semua {
  color: #b22222;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
.rekomendasi .lihat-semua:hover {
  color: #8b1a1a;
}

/* Grid Layout (dipakai di index & all) */
.rekomendasi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* default 3 kolom */
  gap: 20px;
}

.rekomendasi-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.rekomendasi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.rekomendasi-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rekomendasi-card .card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rekomendasi-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.rekomendasi-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.rekomendasi-card .btn-primary {
  background: #b22222;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.rekomendasi-card .btn-primary:hover {
  background: #8b1a1a;
}

/* Responsive */
@media (max-width: 992px) {
  .rekomendasi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .rekomendasi-grid {
    grid-template-columns: 1fr;
  }
  .rekomendasi-card img {
    height: 180px;
  }
}

/* =============================
   CONTACT PAGE
============================= */
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.contact-section .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}
.contact-section .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}
.contact-info {
  margin-bottom: 30px;
  text-align: center;
}
.contact-info p {
  font-size: 16px;
  margin: 8px 0;
  color: #444;
}
.contact-info i {
  color: #800000;
  margin-right: 8px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #800000;
  box-shadow: 0 0 6px rgba(128, 0, 0, 0.3);
  outline: none;
}
.contact-form button {
  align-self: center;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #800000;
  color: #fff;
  transition: background 0.3s, transform 0.2s;
}
.contact-form button:hover {
  background: #5a0000;
  transform: translateY(-2px);
}

/* =============================
   DETAIL PAKET
============================= */
.paket-detail {
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.paket-header {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.paket-info {
  flex: 1 1 45%;
}

.paket-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.paket-info .duration {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.paket-info .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #a4161a;
  margin-bottom: 1rem;
}

.paket-info .btn-primary {
  padding: 0.7rem 1.5rem;
  background: #a4161a;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.paket-info .btn-primary:hover {
  background: #7d1014;
}

.paket-img {
  flex: 1 1 45%;
  text-align: center;
}
.paket-img img {
  width: 60%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.paket-img img:hover {
  transform: scale(1.03);
}

/* Modal zoom */
.img-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.img-modal .modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
.img-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.img-modal .close:hover {
  color: #f44336;
}

/* Tabs di Detail Paket */
.paket-tabs {
  margin: 2rem 0 1rem;
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #eee;
  flex-wrap: wrap;
}
.tab-link {
  background: #f7f7f7;
  border: none;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  border-radius: 6px 6px 0 0;
  transition: all 0.3s ease;
}
.tab-link.active,
.tab-link:hover {
  background: #a4161a;
  color: #fff;
}
.tab-content {
  display: none;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}
.tab-content.active {
  display: block;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
  .paket-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rekom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 10px;
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .iframe-desktop {
    display: none;
  }
  .iframe-mobile {
    display: block;
  }
  .paket-header {
    flex-direction: column;
    text-align: center;
  }
  .paket-info, .paket-img {
    flex: 1 1 100%;
  }
}
@media (max-width: 576px) {
  .rekom-grid {
    grid-template-columns: 1fr;
  }
  .rekom-card img {
    height: 200px;
  }
  .paket-img img {
    width: 95%;
  }
}
/* CTA Buttons Center (Profile Page) */
.cta-buttons.center {
  text-align: center;
  margin-top: 30px;
}

.cta-buttons.center a {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #b71c1c, #600000);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.cta-buttons.center a:hover {
  background: linear-gradient(135deg, #922b21, #400000);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Contact Info Grid */
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom di desktop */
  gap: 20px;
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-box:hover {
	transform: translateY(-3pax);
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.info-box i {
  font-size: 16px;
  color: #fff;
  background: #800000;       /* maroon */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-box p {
  margin: 0;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr; /* jadi 1 kolom */
  }
}
/* ==============================
   FLIGHT SEARCH BOX
============================== */
.flight-search-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.flight-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  align-items: end;
}

.flight-form label {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
  display: block;
  font-weight: 600;
}

.flight-form input,
.flight-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.flight-form input:focus,
.flight-form select:focus {
  border-color: #a4161a;
  box-shadow: 0 0 5px rgba(164,22,26,0.2);
  outline: none;
}

.flight-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, #b71c1c, #600000);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.flight-btn:hover {
  background: linear-gradient(135deg, #922b21, #400000);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .flight-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .flight-form {
    grid-template-columns: 1fr;
  }
}
.expedia-box {
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  border-radius: 10px;
}

.eg-widget {
  width: 100% !important;
  min-height: 340px !important;
}

.eg-widget iframe {
  width: 100% !important;
  height: 340px !important;
  border: none !important;
}

/* Pastikan semua booking-box sama */
.booking-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
