/* 
 * Romogood Travel - Stylesheet
 * Clean, Lightweight & Fully Responsive
 */

:root {
  --primary: #0f2c59;
  --primary-dark: #071937;
  --accent: #ff6b00;
  --accent-hover: #e05d00;
  --wa-green: #25d366;
  --wa-green-hover: #1da851;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(15,44,89,0.08);
  --shadow-lg: 0 10px 25px rgba(15,44,89,0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

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

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

/* Header & Navigation (2-Tier Header: Top Logo/Contact + Sub Header Menu) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.header-top {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 50px;
}

.header-contact-item i {
  color: var(--wa-green);
  font-size: 1.3rem;
}

.header-contact-item span.label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.header-contact-item a.value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-header {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-header:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

/* Sub Header Menu Bar (Positioned Below Header) */
.sub-header {
  background: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sub-header .container {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  text-decoration: none;
}

.nav-links a i {
  font-size: 0.8rem;
  color: var(--accent);
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-bottom-color: var(--accent);
}

/* Hero Section with Dynamic Background Slider */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  color: #fff;
  overflow: hidden;
  min-height: 620px;
  background: var(--primary-dark);
}

.hero-slider-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 7s ease-out;
  transform: scale(1.08);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 25, 55, 0.88) 0%, rgba(15, 44, 89, 0.78) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 12;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #ffd000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-feature-item i {
  color: var(--accent);
}

/* Booking Card (Form Pemesanan) */
.booking-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.booking-header {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.booking-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-header h3 i {
  color: var(--accent);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label i {
  color: var(--accent);
  margin-right: 5px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  background: #fafafa;
}

.form-control:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 44, 89, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Price Preview Box */
.price-summary {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
  border: 1.5px dashed #94a3b8;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.price-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.price-summary-total .amount {
  color: var(--accent);
  font-size: 1.4rem;
}

/* WhatsApp Submit Button */
.btn-wa-submit {
  width: 100%;
  background: var(--wa-green);
  color: #ffffff;
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-wa-submit:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Profile Section */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.profile-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.profile-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.profile-badge-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--primary);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.profile-badge-overlay h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.stat-item {
  background: var(--bg-card);
  padding: 18px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.stat-item h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Services Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Advantages Grid */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.adv-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.adv-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.adv-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--primary);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.adv-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.adv-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Routes List Section */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.route-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
}

.route-cities {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-cities i {
  color: var(--accent);
  font-size: 1rem;
}

.route-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.route-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.route-detail i {
  color: var(--primary);
  width: 20px;
}

.btn-book-route {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-book-route:hover {
  background: var(--accent);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 44, 89, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* Side-by-Side FAQ & Testimonials Grid (Sesuai Layout Screenshot) */
.faq-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 30px;
  align-items: start;
}

.side-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.side-header {
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.side-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.side-header h3 i {
  color: var(--accent);
}

.badge-count {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
}

.side-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Testimonial List Items (Matching Screenshot Design) */
.review-item {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.review-item:last-child {
  border-bottom: none;
  margin-bottom: 10px;
}

.review-user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-user-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  color: #eab308;
  font-size: 0.82rem;
  margin-left: 50px;
  margin-top: -6px;
  margin-bottom: 8px;
}

.review-route-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1.45;
}

.review-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.review-readmore {
  color: #16a34a;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.review-readmore:hover {
  text-decoration: underline;
}

.btn-more-reviews {
  display: block;
  width: 100%;
  text-align: center;
  background: #e8f5e9;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 15px;
}

.btn-more-reviews:hover {
  background: #dcfce7;
  color: #15803d;
}

/* FAQ Accordion Styling inside side card */
.faq-wrap {
  width: 100%;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 16px 16px 16px;
}

/* Contact & Google Maps */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--primary);
  color: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-text p {
  font-size: 1rem;
  font-weight: 600;
}

.map-container {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--wa-green);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  background: var(--wa-green-hover);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 20px 0;
  font-size: 0.9rem;
  border-top: 1fr solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .profile-grid, .contact-grid, .faq-testi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .profile-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.site-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .header-right .header-contact-item,
  .header-right .btn-header {
    display: none !important;
  }
  .header-top {
    padding: 8px 0;
  }
  .site-logo-img {
    max-height: 38px;
  }
  .sub-header {
    background: transparent;
    box-shadow: none;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 20px;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    overflow-y: auto;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: none;
  }
  .nav-links a:hover {
    background: rgba(255,255,255,0.15);
  }
  .nav-links.active {
    left: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Tour Packages Section (Paket Liburan & Private Trip) */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.package-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.package-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.06);
}

.package-badge-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: #0d9488;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
}

.package-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
}

.package-wishlist:hover {
  color: #ef4444;
}

.package-meeting-point {
  position: absolute;
  bottom: 12px;
  left: 15px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.package-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.package-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: 48px;
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.package-rating .stars {
  color: #eab308;
  margin-bottom: 0;
}

.package-rating .score {
  font-weight: 800;
  color: var(--text-dark);
}

.package-rating .reviews {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.package-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-price-box {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin-bottom: 12px;
}

.package-price-box .price-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.package-price-box .price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 3px;
}

.package-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 15px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.package-meta-row i {
  color: var(--primary);
}

.pax-badge {
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.package-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-pkg-detail {
  flex: 1;
  background: #f4f9f4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-pkg-detail:hover {
  background: #dcfce7;
  color: #15803d;
}

.btn-pkg-wa {
  width: 44px;
  height: 44px;
  background: var(--wa-green);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-pkg-wa:hover {
  background: var(--wa-green-hover);
  transform: scale(1.05);
}

/* Modal Popup styling for Package Detail */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #e2e8f0;
}

/* Top Announcement Bar (Presisi Layout Screenshot) */
.top-announcement-bar {
  background: #16a34a;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 6px 0;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}

/* Floating Side Contact Buttons (Left Stacked - Presisi Screenshot) */
.mobile-side-actions {
  position: fixed;
  left: 0;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1001;
}

.side-btn {
  width: 48px;
  height: 48px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.side-btn:hover {
  transform: translateX(4px);
}

.side-wa {
  background: #25d366;
}

.side-call {
  background: #10b981;
}

/* Floating App-Style Bottom Navigation Bar (Dock Mobile Presisi Screenshot) */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 10px;
    z-index: 1001;
    border: 1px solid rgba(226, 232, 240, 0.8);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
  }

  .bottom-nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
  }

  .bottom-nav-item.active {
    color: #0f2c59;
  }

  .bottom-nav-item.active .bottom-nav-icon {
    background: #84cc16;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(132, 204, 22, 0.4);
  }

  .bottom-nav-item:hover {
    color: #16a34a;
  }
}
