/* ============================================
   Java Paradise Tour - Main Stylesheet
   Converted from Nuxt.js SCSS components
   
   Note: Bootstrap 5 is loaded via CDN for utilities and components.
   Custom styles below take precedence where needed.
   ============================================ */

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: #2c3e50;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0; /* Reset - individual pages handle their own padding */
}

/* Ensure content below fixed navbar has enough clearance */
.container:first-child,
.main-content:first-of-type,
.hero-breadcrumb-section:first-of-type,
.my-bookings-page:first-of-type {
  /* Pages with hero sections handle their own spacing */
}

/* Pages without hero sections need top padding */
.page-without-hero {
  padding-top: 100px;
}

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

ul {
  list-style: none;
}

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

/* ========== NAVBAR ========== */
.front-page-navbar {
  position: fixed;
  z-index: 9999; /* Ensure navbar stays above all content */
  width: 100%;
  top: 1rem;
  pointer-events: auto; /* Ensure navbar accepts clicks */
}

.front-page-navbar .navbar-container {
  z-index: 10000;
  pointer-events: auto;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  overflow: visible;
}

.navbar-container.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text-primary {
  color: #20c997;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo-text-secondary {
  color: #ff9800;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.logo-text-secondary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #ff9800 0,
    #ff9800 2px,
    transparent 2px,
    transparent 4px
  );
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #2c3e50;
  pointer-events: auto;
  touch-action: manipulation;
}
.nav-open {
  overflow: hidden;
}

/* Ensure the hamburger is always clickable above nearby elements */
.mobile-menu-toggle {
  position: relative;
  z-index: 10001;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1001;
  overflow: visible;
}

.nav-link {
  padding: 8px 16px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: #20c997;
}

.nav-link.active-link {
  color: #ff6b9d !important;
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
  overflow: visible;
}

.dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999 !important;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
}

/* Create a bridge so hover doesn't break when moving mouse to dropdown */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 9998;
  display: none;
}

.nav-dropdown:hover::after {
  display: block;
}

/* Ensure dropdown menu shows on hover - override any Bootstrap styles */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown .dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  display: block !important;
}

/* Prevent Bootstrap from interfering */
.nav-dropdown .dropdown-menu {
  position: absolute !important;
  float: none !important;
  min-width: 240px !important;
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #2c3e50;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.5;
}

.dropdown-item:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.dropdown-item:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.dropdown-item:hover {
  background: rgba(44, 62, 80, 0.05);
  color: #2c3e50;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav.btn-outlined {
  background: transparent;
  border: 1.5px solid #ff6b9d;
  color: #ff6b9d;
}

.btn-nav.btn-outlined:hover {
  background: rgba(255, 107, 157, 0.1);
  border-color: #ff6b9d;
  color: #ff6b9d;
}

.btn-nav.btn-primary {
  background: #ff6b9d;
  color: #fff;
  border: none;
}

.btn-nav.btn-primary:hover {
  background: #ff4a7d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.theme-switcher-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #2c3e50;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
}

.theme-switcher-btn:hover {
  background: rgba(44, 62, 80, 0.1);
  color: #20c997;
}

.btn-nav.btn-text {
  background: transparent;
  color: #2c3e50;
}

.btn-nav.btn-text:hover {
  color: #20c997;
}

/* Mobile Navigation */
.mobile-nav-drawer {
  position: fixed; /* Essential for overlaying content */
  top: 0;
  left: 0; /* Starting point */
  height: 100%;
  width: 80%; /* Adjust width as needed */
  max-width: 350px; /* Limit width on larger screens */
  background-color: #fff; /* Drawer background */
  z-index: 10002; /* Above navbar */
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  /* Position off-screen and set transition for animation */
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto; /* Allows scrolling if content is long */
  padding: 60px 20px 20px;
  pointer-events: none; /* Prevent hidden drawer from blocking clicks */
}

.mobile-nav-drawer.open {
  transform: translateX(0) !important; /* ensure visibility */
  pointer-events: auto;
}

/* Backdrop overlay for when drawer is open */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10001; /* Below drawer, above content */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.mobile-nav-backdrop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Ensure hero/slider layers are beneath navbar on mobile */
.slider-section,
.java-paradise-hero,
.hero-breadcrumb,
.hero-breadcrumb-section {
  position: relative;
  z-index: 1;
}

.close-drawer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #2c3e50;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  padding: 12px 0;
  color: #2c3e50;
  font-weight: 500;
  font-size: 16px;
}

.mobile-nav-link.active-link {
  color: #20c997;
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  margin-top: 8px;
  gap: 8px;
}

.mobile-dropdown-content.show {
  display: flex;
}

.mobile-dropdown-link {
  padding: 8px 0;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

.mobile-dropdown-link:hover {
  color: #20c997;
}

.mobile-nav-divider {
  height: 1px;
  background: #e9ecef;
  margin: 16px 0;
}

.mobile-nav-button {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.mobile-nav-button:not(.mobile-nav-primary) {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}

.mobile-nav-button:not(.mobile-nav-primary):hover {
  background: #e9ecef;
  color: #2c3e50;
}

.mobile-nav-primary {
  background: #20c997;
  color: #fff;
  font-weight: 600;
}

.mobile-nav-primary:hover {
  background: #1a9b77;
  color: #fff;
}

/* ========== HERO SLIDER ========== */
.java-paradise-hero {
  position: relative;
  width: 100%;
}

.slider-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}

.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.slider-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.slider-slide {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoom-in-out 12s ease-in-out infinite;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(1);
  visibility: hidden;
  will-change: transform, opacity;
}

.slider-slide.active {
  animation: zoom-in-out 12s ease-in-out infinite;
  opacity: 1;
  visibility: visible;
}

.slider-slide.zoom-paused {
  animation-play-state: paused;
}

@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.03);
  }
  50% {
    transform: scale(1.06);
  }
  75% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.slide-overlay {
  position: absolute;
  z-index: 1;
  animation: overlay-pulse 6s ease-in-out infinite;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; /* don't block clicks */
}

@keyframes overlay-pulse {
  0%,
  100% {
    background: rgba(0, 0, 0, 0.3);
  }
  50% {
    background: rgba(0, 0, 0, 0.25);
  }
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: content-float 8s ease-in-out infinite;
  animation-delay: 2s;
  height: 100%;
  color: #fff;
  max-width: 1000px;
  padding: 0 20px;
  text-align: center;
}

@keyframes content-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.slide-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-controls {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 50%;
  left: 0;
  right: 0;
  padding: 0 20px;
  transform: translateY(-50%);
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  height: 50px;
  width: 50px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.slider-indicators {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  bottom: 30px;
  left: 0;
  right: 0;
}

.slider-indicator {
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-indicator.active {
  background: #fff;
  transform: scale(1.2);
}

.slider-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ========== FOOTER ========== */
.footer {
  background-color: #343a40; /* Dark background color */
  color: #f8f9fa; /* Light text color */
  padding: 50px 0;
  margin-top: auto;
}

.footer h5 {
  color: #f8f9fa;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.9em;
  line-height: 1.6;
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.8em;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.da-logo {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff4081;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 64, 129, 0.4);
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.scroll-to-top-btn:hover {
  background: #ff6ba3;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 64, 129, 0.5);
}

.scroll-to-top-btn:active {
  transform: translateY(-1px);
}

.scroll-to-top-btn i {
  font-size: 18px;
}

/* Vuetify-style container classes */
.v-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.v-container.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.v-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.v-row.footer-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  gap: 0;
  margin-bottom: 40px;
}

.v-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 12px;
}

.v-col-md-4 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 12px;
}

@media (min-width: 960px) {
  .v-col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  gap: 0;
  margin-bottom: 40px;
}

.footer-column {
  padding: 0 12px;
  margin-bottom: 0;
}

.footer-column:first-child {
  padding-left: 0;
}

.footer-column:last-child {
  padding-right: 0;
}

.footer-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.company-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-media-section {
  margin-top: 24px;
}

.social-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #f8f9fa;
  border: 1px solid #f8f9fa;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #f8f9fa;
  color: #343a40;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info ul li i {
  margin-right: 10px;
  font-size: 1.1em;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-icon,
.social-icon,
.chevron-icon {
  flex-shrink: 0;
  color: #fff;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg,
.social-icon svg,
.chevron-icon svg {
  display: block;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-company {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-address {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-text {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.quick-links ul li a {
  color: #f8f9fa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.quick-links ul li a:hover {
  color: #0d6efd; /* Bootstrap primary blue */
}

.quick-links ul li a i {
  margin-right: 8px;
  font-size: 0.7em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .slider-section {
    height: 70vh;
    min-height: 400px;
  }

  .slide-title {
    font-size: 48px;
  }

  .slide-subtitle {
    font-size: 20px;
  }

  .slider-btn {
    height: 40px;
    width: 40px;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .navbar-logo .logo-text-wrapper {
    display: none;
  }

  .logo-image {
    height: 35px;
  }

  .navbar-container {
    padding: 10px 20px;
  }
}

/* Hide toggle on desktop (reinforce) */
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

  .slider-section {
    height: 60vh;
    min-height: 300px;
  }

  .slide-title {
    font-size: 36px;
  }

  .slide-subtitle {
    font-size: 18px;
  }

  .slider-btn {
    height: 35px;
    width: 35px;
  }

  .footer-content {
    flex-direction: column;
  }
  
  .v-col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 28px;
  }

  .slide-subtitle {
    font-size: 16px;
  }

  .navbar-container {
    padding: 0 16px;
  }
}

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

/* ========== WELCOME SECTION ========== */
.welcome-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 100px 0;
}

.welcome-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

.welcome-col-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 100%;
  max-width: 400px;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.decorative-circle.circle-1 {
  animation: float 6s ease-in-out infinite;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  height: 300px;
  width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.decorative-circle.circle-2 {
  animation: float 4s ease-in-out infinite reverse;
  background: linear-gradient(135deg, #ff6f00, #ff9800);
  height: 200px;
  width: 200px;
  top: 20%;
  right: 10%;
}

.decorative-circle.circle-3 {
  animation: float 8s ease-in-out infinite;
  background: linear-gradient(135deg, #20c997, #00e676);
  height: 150px;
  width: 150px;
  bottom: 15%;
  left: 10%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.logo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.logo-image-wrapper {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  animation: image-float 3s ease-in-out infinite;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
}

@keyframes image-float {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
  }
}

.logo-image {
  display: block;
  height: auto;
  width: 100%;
  object-fit: contain;
}

.welcome-col-content {
  display: flex;
  align-items: center;
  padding: 40px;
}

.welcome-content {
  max-width: 650px;
}

.welcome-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.label-text {
  color: #20c997;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.label-line {
  flex: 1;
  background: #20c997;
  height: 2px;
  width: 60px;
  max-width: 60px;
}

.welcome-title {
  color: #ff6f00;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.welcome-paragraph {
  color: #424242;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.welcome-paragraph:last-of-type {
  margin-bottom: 40px;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #20c997;
  box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 32px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: #1ba87e;
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
  transform: translateY(-2px);
}

/* ========== WHY CHOOSE US ========== */
.why-choose-us-section {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

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

.section-label {
  margin-bottom: 16px;
}

.section-title {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.section-subtitle {
  color: #6c757d;
  font-size: 18px;
  margin: 16px auto 0;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  background: #fff;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
}

.feature-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  height: 120px;
  width: 120px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.icon-background {
  position: absolute;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.2);
  height: 140px;
  width: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-background {
  transform: translate(-50%, -50%) scale(1.2);
}

.feature-icon {
  position: relative;
  z-index: 2;
  color: #fff;
}

.feature-title {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

.feature-description {
  color: #616161;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========== TOUR PACKAGES ========== */
.tour-packages-section {
  padding: 80px 0;
  background: #fff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px 24px;
  justify-content: center;
}

.package-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.package-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.package-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .card-image {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  border-radius: 20px;
  background: rgba(32, 201, 151, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.package-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.package-header {
  margin-bottom: 16px;
}

.package-header h3 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.package-group {
  display: flex;
  align-items: center;
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
}

.package-group svg {
  color: #20c997;
}

.package-description {
  flex: 1;
  margin-bottom: 20px;
}

.package-description p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
}

.package-pricing {
  padding: 16px;
  border-radius: 12px;
  background: #f8f9fa;
  margin-bottom: 24px;
  text-align: center;
}

.price-label {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.price-amount {
  color: #20c997;
  font-size: 24px;
  font-weight: 700;
}

.price-unit {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

.package-actions {
  display: flex;
  gap: 12px;
}

.details-btn,
.book-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.details-btn {
  border: 2px solid #20c997;
  background: transparent;
  color: #20c997;
}

.details-btn:hover {
  background: #20c997;
  color: #fff;
}

.book-btn {
  background: #20c997;
  color: #fff;
}

.book-btn:hover {
  background: #1a9b77;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #20c997 0%, #1a9b77 100%);
  color: #fff;
}

.contact-cta {
  margin-top: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  color: #20c997;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* ========== HERO BREADCRUMB ========== */
.hero-breadcrumb {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.hero-background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; /* background shouldn't capture taps */
}

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

.hero-overlay {
  position: absolute;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; /* overlay shouldn't capture taps */
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
}

.breadcrumb-content {
  color: #fff;
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.main-content {
  padding: 80px 0;
}

/* ========== ABOUT PAGE ========== */
.hero-breadcrumb-section {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.hero-bg-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-link {
  color: #20c997;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #1a9b77;
}

.breadcrumb-current {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb-separator {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.about-section {
  margin-bottom: 80px;
}

.about-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.image-column {
  padding: 12px;
}

.image-section {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 600px;
}

.background-image {
  position: relative;
  background: linear-gradient(135deg, #20c997 0%, #1a9b77 100%);
  height: 100%;
  width: 100%;
}

.main-bg-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.logo-overlay {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
}

.logo-overlay .logo-image {
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  width: 120px;
}

.attractions-grid {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  top: 80px;
  left: 20px;
}

.attraction-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  width: 120px;
  transition: transform 0.3s ease;
}

.attraction-card:hover {
  transform: scale(1.05);
}

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

.attraction-label {
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 4px 8px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.attraction-label.label-teal {
  background: rgba(32, 201, 151, 0.9);
}

.attraction-label.label-yellow {
  background: rgba(255, 193, 7, 0.9);
}

.book-now-section {
  position: absolute;
  z-index: 2;
  top: 280px;
  left: 20px;
}

.book-now-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: #ffc107;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 8px;
}

.book-now-button:hover {
  background: #ffb300;
  box-shadow: 0 6px 16px rgba(255, 193, 7, 0.5);
  transform: translateY(-2px);
}

.website-bar {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 201, 151, 0.95);
  gap: 8px;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 12px 16px;
}

.website-url {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.text-column {
  padding: 12px;
}

.text-content {
  padding: 40px 20px;
}

.welcome-line {
  background: #20c997;
  height: 2px;
  width: 40px;
}

.about-title {
  color: #ff9800;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.description-paragraph {
  margin: 0;
  color: #6c757d;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  text-align: start;
}

.closing-text {
  color: #20c997;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  margin-top: 16px;
  text-align: start;
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 960px) {
  .welcome-section {
    padding: 60px 0;
  }

  .welcome-row {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .logo-wrapper {
    height: 300px;
    max-width: 300px;
  }

  .decorative-circle.circle-1 {
    height: 250px;
    width: 250px;
  }

  .decorative-circle.circle-2 {
    height: 150px;
    width: 150px;
  }

  .decorative-circle.circle-3 {
    height: 100px;
    width: 100px;
  }

  .welcome-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .why-choose-us-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px 16px;
  }
}

@media (max-width: 600px) {
  .welcome-section {
    padding: 40px 0;
  }

  .logo-wrapper {
    height: 250px;
  }

  .welcome-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .welcome-label {
    gap: 12px;
  }

  .label-text {
    font-size: 14px;
  }

  .label-line {
    max-width: 40px;
  }

  .welcome-paragraph {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: start;
  }

  .learn-more-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .package-actions {
    flex-direction: column;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .hero-breadcrumb-section,
  .hero-breadcrumb {
    height: 300px;
  }

  .hero-title {
    font-size: 36px;
  }

  .about-content-row {
    grid-template-columns: 1fr;
  }

  .image-section {
    height: 400px;
  }

  .attractions-grid {
    gap: 8px;
    top: 60px;
  }

  .attraction-card {
    height: 70px;
    width: 100px;
  }

  .book-now-section {
    top: 200px;
  }

  .about-title {
    font-size: 32px;
  }
}
