/* === GLOBAL & VARIABLES === */
:root {
  --color-dark: #121212;
  --color-dark-grey: #1e1e1e;
  --color-light-grey: #f9f9f9;
  --color-white: #ffffff;
  --color-text: #333;
  --color-text-light: #eaeaea;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-dark: 0 8px 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.3;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.2rem;
}
p {
  color: #555;
}
section {
  padding: 80px 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* === COMPONENTS === */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius-pill);
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-light {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.btn-light:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.btn-dark:hover {
  background-color: #000;
  transform: translateY(-3px);
}
.btn i {
  margin-left: 8px;
}
.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* === HEADER === */
.header {
  position: fixed;
  width: 100%;
  top: 20px;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-pill);
  padding: 10px 20px;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img-white {
  filter: brightness(0) invert(1);
}
.nav-logo a,
.nav-link {
  color: var(--color-text-light);
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--color-white);
}
.nav-logo a:hover {
  color: var(--color-white);
}
.nav-menu {
  display: flex;
  gap: 30px;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-white);
  transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
  height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--color-white);
  text-align: center;
}
.hero .btn-light {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.hero .btn-light:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("image/hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero .subtitle {
  font-size: 1.1rem;
  color: #eee;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* === ABOUT SECTION === */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-1 {
  width: 90%;
  border-radius: var(--border-radius-lg);
}
.about-img-2 {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 50%;
  border-radius: var(--border-radius-lg);
  border: 8px solid var(--color-white);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 25px;
}
.feature-item p {
  margin: 0;
  color: #777;
}

/* === DESTINATIONS SECTION === */
.destinations {
  background-color: var(--color-white);
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.destination-card {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-dark);
}
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.destination-card:hover img {
  transform: scale(1.1);
}
.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}
.destination-card:hover .destination-overlay {
  opacity: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.destination-content {
  color: var(--color-white);
  text-align: center;
  width: 100%;
  transform: translateY(20px);
  transition: var(--transition);
}
.destination-card:hover .destination-content {
  transform: translateY(0);
}
.destination-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.destination-content p {
  color: #eee;
  margin-bottom: 15px;
}
.destination-content i {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* === PACKAGES & TABS === */
.packages {
  background-color: var(--color-light-grey);
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-link {
  padding: 10px 25px;
  cursor: pointer;
  border: 1px solid #ddd;
  background-color: var(--color-white);
  border-radius: var(--border-radius-pill);
  font-weight: 500;
  transition: var(--transition);
}
.tab-link:hover {
  background-color: #e9e9e9;
}
.tab-link.active {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s;
}
.tab-content.active {
  display: block;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.package-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #f0f0f0;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-dark);
}
.package-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.package-card:hover img {
  transform: scale(1.05);
}
.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--color-dark), #333);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.package-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  height: 60px;
  opacity: 0;
  transition: var(--transition);
}
.package-card:hover .package-overlay {
  opacity: 1;
}
.package-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card-content h3 {
  margin-bottom: 12px;
  color: var(--color-dark);
  font-size: 1.1rem;
  line-height: 1.4;
}
.package-card-content p {
  flex-grow: 1;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.package-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.package-price {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.9rem;
}
.package-price .from {
  font-size: 0.7rem;
  color: #888;
  font-weight: 400;
}
.package-cta {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}
.package-card:hover .package-cta {
  opacity: 1;
  transform: translateY(0);
}
.package-cta:hover {
  background: #000;
  transform: translateY(-2px);
}

/* === GALLERY SECTION === */
.gallery {
  background-color: var(--color-light-grey);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-dark);
}
.gallery-item.item-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out, filter 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}
.location-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  padding: 6px 12px;
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Penyesuaian Responsif untuk Galeri */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }
  /* Item besar tetap memanjang 2 kolom */
  .gallery-item.item-large {
    grid-column: span 2;
    grid-row: span 1; /* Diubah agar tidak terlalu tinggi di tablet */
  }
}

@media (max-width: 576px) {
  .tab-link {
    padding: 10px 10px;
  }
  .gallery-grid {
    grid-template-columns: 1fr; /* Semua jadi 1 kolom */
    grid-auto-rows: 250px;
  }
  .gallery-item.item-large {
    grid-column: span 1; /* Item besar juga jadi 1 kolom */
    grid-row: span 1;
  }
}
/* === STEPS SECTION === */
.steps {
  display: flex;
  color: var(--color-white);
  padding: 0;
  background-color: var(--color-dark);
  align-items: stretch; /* Memastikan kolom sama tinggi */
}
.steps-image {
  width: 50%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/couple.jpeg);
  background-size: cover;
  background-position: center;
  min-height: 500px; /* Menambahkan tinggi minimum */
}
.steps-content {
  width: 50%;
  padding: 60px 80px;
  display: flex;
  align-items: center; /* Vertically center the content */
  justify-content: center;
}
.steps-content .container {
  padding: 0; /* Hapus padding duplikat */
  width: 100%;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.step-item p {
  color: #aaa;
}
.step-item .icon-circle {
  background-color: var(--color-dark-grey);
}

/* === TESTIMONIALS SECTION === */
.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--color-light-grey);
  padding: 30px;
  border-radius: var(--border-radius-md);
}
.testimonial-card p {
  margin-bottom: 25px;
}
.author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.author span {
  font-size: 0.9rem;
  color: #888;
}

/* === LANGUAGE SWITCHER === */
.language-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 4px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--color-white);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 500;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

/* === FOOTER === */
.footer {
  background: var(--color-dark);
  color: var(--color-text-light);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-col h4 {
  margin-bottom: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #aaa; /* Set base color */
  transition: var(--transition);
}
.footer-logo:hover {
  color: var(--color-white); /* Change color on hover */
}
.footer-col p,
.footer-col a,
.footer-col h3,
.footer-col span {
  color: #aaa;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a:hover {
  color: var(--color-white);
}
.footer-col i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-links a {
  font-size: 1.2rem;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 0.9rem;
}

/* === WHATSAPP & MODAL === */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 20px 20px;
  }
  .footer-logo {
    flex-direction: column;
    /* height: 80px; */
  }
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .navbar .btn-light {
    display: none;
  }

  .nav-menu {
    position: fixed;
    right: -120%;
    top: 0;
    flex-direction: column;
    background-color: var(--color-white);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    justify-content: center;
    gap: 2rem;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu.active .nav-link {
    color: var(--color-dark);
  }
  .nav-menu.active .nav-link:hover {
    color: var(--color-dark-grey);
  }
  .nav-item {
    font-size: 1.5rem;
  }
  .hamburger {
    display: block;
    z-index: 1001;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    color: #fff;
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    color: #fff;
    transform: translateY(-8px) rotate(-45deg);
  }
  .about .container {
    grid-template-columns: 1fr;
  }
  .about-images {
    margin-bottom: 40px;
  }
  .steps {
    flex-direction: column;
  }
  .steps-image,
  .steps-content {
    width: 100%;
  }
  .steps-image {
    min-height: 300px; /* Sesuaikan tinggi untuk mobile */
  }
  .steps-content {
    padding: 40px 20px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .destination-card {
    height: 300px;
  }
}
@media (max-width: 768px) {
  /* Menargetkan tag Judul (h1, h2, h3) */
  h1 {
    font-size: 2rem; /* ~35px */
  }
  h2 {
    font-size: 1.6rem; /* ~29px */
  }
  h3 {
    font-size: 1rem; /* ~18px */
  }

  /* Menargetkan tag Teks Paragraf (p) dan List (li) */
  p,
  li {
    font-size: 0.85rem; /* ~15px */
  }
  .header {
    top: 0;
  }
  .hamburger.active .bar {
    background-color: #000;
  }
  .header .container {
    padding: 0;
  }
  .navbar {
    border-radius: 0;
    padding: 15px 20px;
  }
  .hero {
    /* height: auto; */
    padding: 120px 0 60px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }
  section {
    padding: 50px 0;
  }
}

/* === AIRPORT SERVICE SECTION === */
.airport-service {
  background-color: var(--color-white);
}

.airport-service-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.airport-service-image {
  position: sticky;
  top: 120px; /* Adjust this value based on your header's height */
  align-self: start; /* Aligns the item to the start of the grid area */
}

.airport-service-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-dark);
}

.airport-service-prices .price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.airport-service-prices .price-table th,
.airport-service-prices .price-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.airport-service-prices .price-table th {
  background-color: var(--color-dark);
  color: var(--color-white);
  font-weight: 600;
}

.airport-service-prices .price-table td:last-child {
  font-weight: 600;
  color: var(--color-dark);
}

.airport-service-prices .price-table tr:nth-child(even) {
  background-color: var(--color-light-grey);
}

.airport-service-prices .price-table tr:hover {
  background-color: #e9e9e9;
}

@media (max-width: 768px) {
  .airport-service-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .airport-service-image {
    position: static;
  }
}

/* === PACKAGE DETAIL === */
.package-hero {
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-white);
  text-align: center;
  padding-top: 120px;
  overflow: hidden;
}
.package-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.package-hero h1 {
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.package-hero .subtitle {
  font-size: 1.1rem;
  color: #eee;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* === PACKAGE DETAIL STYLES === */

/* Package Hero Section */

.package-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.package-hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.package-hero .container {
  position: relative;
  z-index: 3;
}

.package-hero .hero-content {
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto;
}

.package-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.package-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

/* Main Package Detail Section */
.package-detail {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  min-height: 100vh;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Content Cards */
.content-card,
.sidebar-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-card:hover,
.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2c3e50 100%);
  color: var(--color-white);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-header i {
  font-size: 1.5rem;
  opacity: 0.9;
}

.card-header h3,
.card-header h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1.3rem;
}

.card-body {
  padding: 30px;
}

/* Itinerary Styling */
.itinerary-day {
  margin-bottom: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 25px;
  border-left: 5px solid var(--color-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.itinerary-day:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.itinerary-day h4 {
  color: var(--color-dark);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.itinerary-day h4::before {
  content: "📍";
  font-size: 1.1rem;
}

.itinerary-day ul {
  list-style: none;
  padding: 0;
}

.itinerary-day li {
  margin-bottom: 10px;
  color: #555;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.itinerary-day li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-dark);
  font-weight: bold;
}

/* Facilities Section */
.facilities-section {
  margin-top: 40px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.facility-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.facility-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.include-card .facility-header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.exclude-card .facility-header {
  background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
  color: white;
}

.facility-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
}

.facility-icon i {
  font-size: 1.3rem;
}

.facility-header h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.facility-body {
  padding: 25px;
}

.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.facility-list li i {
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.include-card .facility-list li i {
  color: #28a745;
}

.exclude-card .facility-list li i {
  color: #dc3545;
}

/* Sidebar Styling */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

/* Price Card */
.price-card .card-header {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.price-table-container {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.price-table-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

#packagePrices {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

#packagePrices::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 350px;
}

.price-table th {
  white-space: nowrap;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2c3e50 100%);
  color: var(--color-white);
  padding: 15px 12px;
  text-align: center;
  font-weight: 600;
  border: none;
}

.price-table td {
  white-space: nowrap;
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
  background: var(--color-white);
  transition: var(--transition);
}

.price-table tr:hover td {
  background: #f8f9fa;
}

.price-table tr:nth-child(even) td {
  background: #f8f9fa;
}

.price-table tr:nth-child(even):hover td {
  background: #e9ecef;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2c3e50 100%);
  color: var(--color-white);
  border: none;
}

.cta-content {
  padding: 30px;
  text-align: center;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cta-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.cta-content h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.6;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e 0%, #0d6b5c 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

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

/* Info Card */
.info-card .card-header {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.info-item {
  /* display: flex; */
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: var(--transition);
}

.info-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  color: #17a2b8;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-item div {
  flex: 1;
}

.info-item strong {
  display: block;
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 5px;
}

.info-item span {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* === RESPONSIVE === */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .detail-grid {
    gap: 30px;
  }

  .package-hero h1 {
    font-size: 2.5rem;
  }

  .package-hero .subtitle {
    font-size: 1.1rem;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-sidebar {
    position: static;
    order: -1;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-detail {
    padding: 60px 0;
  }

  .package-hero {
    height: 50vh;
    min-height: 350px;
  }

  .package-hero h1 {
    font-size: 2.2rem;
  }

  .card-body {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .package-hero {
    height: 45vh;
    min-height: 300px;
  }

  .package-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .package-hero .subtitle {
    font-size: 1rem;
  }

  .package-detail {
    padding: 40px 0;
  }

  .detail-grid {
    gap: 25px;
  }

  .card-header {
    padding: 20px 25px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .card-header h3,
  .card-header h4 {
    font-size: 1.1rem;
  }

  .card-body {
    padding: 20px;
  }

  .itinerary-day {
    padding: 20px;
    margin-bottom: 20px;
  }

  .itinerary-day h4 {
    font-size: 1.1rem;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .facility-header {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .facility-body {
    padding: 20px;
  }

  .cta-content {
    padding: 25px;
  }

  .cta-content h3 {
    font-size: 1.2rem;
  }

  .whatsapp-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .info-item {
    padding: 12px;
    text-align: center;
    gap: 10px;
  }

  .price-table {
    font-size: 0.8rem;
    min-width: 300px;
  }

  .price-table th,
  .price-table td {
    padding: 8px 6px;
  }

  /* Header Mobile Styles */
  .header {
    top: 0;
  }

  .header .container {
    padding: 0 !important;
  }

  .navbar {
    border-radius: 0;
    padding: 15px 20px;
  }

  .nav-menu {
    position: fixed;
    right: -120%;
    top: 0;
    flex-direction: column;
    background-color: var(--color-white);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu.active .nav-link {
    color: var(--color-dark);
  }

  .nav-menu.active .nav-link:hover {
    color: var(--color-dark-grey);
  }

  .nav-item {
    font-size: 1.5rem;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hamburger.active .bar {
    background-color: #000;
  }

  .language-switcher {
    /* order: -1; */
    margin-right: 15px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .flag-icon {
    width: 14px;
    height: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  section {
    padding: 50px 0;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .package-hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .package-hero .subtitle {
    font-size: 0.9rem;
  }

  .package-detail {
    padding: 30px 0;
  }

  .card-header {
    padding: 15px 20px;
  }

  .card-header h3,
  .card-header h4 {
    font-size: 1rem;
  }

  .card-body {
    padding: 15px;
  }

  .itinerary-day {
    padding: 15px;
    margin-bottom: 15px;
  }

  .itinerary-day h4 {
    font-size: 1rem;
  }

  .itinerary-day li {
    font-size: 0.9rem;
    padding-left: 20px;
  }

  .facility-header {
    padding: 12px 15px;
  }

  .facility-header h4 {
    font-size: 1rem;
  }

  .facility-body {
    padding: 15px;
  }

  .facility-list li {
    font-size: 0.85rem;
    gap: 8px;
  }

  .cta-content {
    padding: 20px;
  }

  .cta-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .cta-content h3 {
    font-size: 1.1rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }

  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .info-item {
    padding: 10px;
    text-align: center;
  }

  .info-item strong {
    font-size: 0.9rem;
  }

  .info-item span {
    font-size: 0.8rem;
  }

  .price-table {
    font-size: 0.75rem;
    min-width: 280px;
  }

  .price-table th,
  .price-table td {
    padding: 6px 4px;
  }

  .container {
    padding: 0 15px;
  }
}
