@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --primary-deep: #0c3b2e;       /* Deep Jungle Green */
  --primary-medium: #6d9773;     /* Soft Mint Green */
  --accent-gold: #f8b400;        /* Ceylon Tea Gold */
  --accent-gold-hover: #e09f00;
  --bg-light: #f6f8f5;           /* Warm soft white */
  --text-dark: #1b262c;          /* Near black/charcoal */
  --text-muted: #5e6f74;         /* Sleek gray */
  --white: #ffffff;
  
  /* Glassmorphism Options */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-dark-bg: rgba(12, 59, 46, 0.85);
  --glass-dark-border: rgba(109, 151, 115, 0.2);
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glass: 0 8px 32px 0 rgba(12, 59, 46, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 175px;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.25;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

ul {
  list-style: none;
}

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

/* Global Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

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

/* Section Header Styles */
.section-header {
  max-width: 600px;
  margin: 0 auto 55px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-deep);
  box-shadow: 0 4px 14px rgba(248, 180, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 180, 0, 0.4);
}

.btn-secondary {
  background-color: var(--primary-deep);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(12, 59, 46, 0.2);
}

.btn-secondary:hover {
  background-color: #08281f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 59, 46, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 20px 0;
}

header.scrolled {
  background: rgba(12, 59, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(109, 151, 115, 0.1);
}

header.scrolled .nav-link {
  color: var(--white);
}

header.scrolled .logo-text {
  color: var(--white);
}

.nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  width: 100%;
}

header.scrolled {
  background: rgba(12, 59, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(109, 151, 115, 0.1);
}

header.scrolled .nav-wrapper {
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo img {
  height: 115px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
  display: block;
}

header.scrolled .logo img {
  height: 96px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(12, 59, 46, 0.65), rgba(12, 59, 46, 0.85)), url('images/hero_bg.png') no-repeat center center/cover;
  color: var(--white);
  overflow: hidden;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-badge-wrapper {
  flex-shrink: 0;
  max-width: 250px;
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-badge-wrapper a {
  display: block;
  width: 100%;
}

.hero-ta-badge {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  transition: var(--transition-normal);
}

.hero-badge-wrapper a:hover .hero-ta-badge {
  transform: scale(1.05);
}

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

@media (max-width: 991px) {
  .hero {
    padding-top: 190px;
    padding-bottom: 60px;
    height: auto;
    min-height: 100vh;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 35px;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    gap: 12px;
  }
  
  .hero-btns .btn {
    padding: 12px 16px;
    font-size: 0.88rem;
    flex: 1;
    max-width: 200px;
    white-space: nowrap;
  }
  
  .hero-badge-wrapper {
    max-width: 160px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  .scroll-down {
    display: none !important;
  }
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  color: var(--white);
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent-gold);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: var(--radius-full);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  width: 100%;
}

.about-img-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4 / 5;
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-img-wrapper:hover .about-img-container .slider-pic {
  transform: scale(1.05);
}

/* Guide Fading Slider styles */
.fade-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-deep);
  color: var(--white);
  z-index: 8;
  gap: 16px;
  border-radius: var(--radius-lg);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.slider-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-left-color: var(--accent-gold);
  border-radius: var(--radius-full);
  animation: sliderSpin 1s linear infinite;
}

@keyframes sliderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fade-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.fade-slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(12, 59, 46, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.slider-control:hover {
  background: var(--accent-gold);
  color: var(--primary-deep);
  border-color: transparent;
  transform: translateY(-50%) scale(1.05);
}

.slider-control.prev {
  left: 16px;
}

.slider-control.next {
  right: 16px;
}

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

.fade-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.fade-slider-dots .dot.active {
  background: var(--accent-gold);
  width: 24px;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  padding: 24px;
  text-align: center;
  max-width: 160px;
  background: var(--accent-gold);
  color: var(--primary-deep);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.about-badge span {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.about-badge p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-icon {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.highlight-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Stats Section */
.stats-bar {
  display: flex;
  justify-content: space-between;
  background-color: var(--primary-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 60px;
  margin-top: 80px;
  box-shadow: var(--shadow-lg);
}

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

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Destinations Section */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.dest-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.dest-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 59, 46, 0.9) 0%, rgba(12, 59, 46, 0.2) 60%, rgba(12, 59, 46, 0) 100%);
  z-index: 1;
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  color: var(--white);
  transition: var(--transition-normal);
}

.dest-tag {
  background: var(--accent-gold);
  color: var(--primary-deep);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.dest-content h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.dest-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.dest-card:hover .dest-img {
  transform: scale(1.08);
}

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

.dest-card:hover .dest-content p {
  opacity: 1;
  max-height: 100px;
  margin-top: 10px;
}

/* Popups / Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 59, 46, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  width: 90%;
  max-width: 600px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--primary-deep);
  cursor: pointer;
}

.modal h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.modal-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-body {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.modal-body h4 {
  color: var(--primary-deep);
  margin-top: 20px;
  margin-bottom: 8px;
}

.modal-body ul {
  padding-left: 20px;
  list-style-type: disc;
}

.modal-body li {
  margin-bottom: 6px;
}

.modal-actions {
  display: flex;
  gap: 15px;
}

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

.service-card {
  padding: 45px 30px;
  text-align: center;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: var(--primary-deep);
  color: var(--white);
  border-color: transparent;
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(109, 151, 115, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px auto;
  font-size: 2.2rem;
  color: var(--primary-deep);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--accent-gold);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.service-card:hover h3 {
  color: var(--white);
}

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

.service-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* Tour Planner Section (Mini-App) */
.planner-wrapper {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.planner-form-panel {
  padding: 50px;
  border-right: 1px solid rgba(12, 59, 46, 0.08);
}

.planner-step {
  display: none;
}

.planner-step.active {
  display: block;
}

.planner-step h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  font-size: 0.9rem;
  background: var(--primary-deep);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Grid Toggles */
.toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.toggle-option {
  border: 2px solid rgba(109, 151, 115, 0.25);
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-normal);
}

.toggle-option:hover {
  border-color: var(--primary-medium);
  background-color: rgba(109, 151, 115, 0.05);
}

.toggle-option.selected {
  border-color: var(--primary-deep);
  background-color: rgba(12, 59, 46, 0.05);
}

.toggle-icon {
  font-size: 1.5rem;
}

.toggle-label h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.toggle-label p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.checkbox-circle {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(109, 151, 115, 0.5);
  border-radius: var(--radius-full);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.toggle-option.selected .checkbox-circle {
  border-color: var(--primary-deep);
  background-color: var(--primary-deep);
}

.toggle-option.selected .checkbox-circle::after {
  content: '✓';
  color: var(--white);
  font-size: 0.75rem;
  font-weight: bold;
}

/* Planner Controls */
.planner-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

/* Proposal Panel */
.planner-proposal-panel {
  background-color: rgba(12, 59, 46, 0.02);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.proposal-placeholder {
  text-align: center;
  max-width: 320px;
}

.placeholder-icon {
  font-size: 4rem;
  color: var(--primary-medium);
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

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

.proposal-placeholder h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.proposal-placeholder p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.proposal-content {
  display: none;
  width: 100%;
}

.proposal-content.active {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.proposal-card {
  flex-grow: 1;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  border-top: 4px solid var(--accent-gold);
}

.proposal-header {
  border-bottom: 1px solid rgba(12, 59, 46, 0.08);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.proposal-header h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.proposal-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.proposal-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.proposal-itinerary {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.itinerary-day {
  margin-bottom: 18px;
  padding-left: 16px;
  position: relative;
}

.itinerary-day::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-deep);
  border-radius: var(--radius-full);
}

.itinerary-day h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.itinerary-day p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--primary-deep);
  color: var(--white);
}

.testimonials-section h2 {
  color: var(--white);
}

.testimonials-section h2::after {
  background: var(--accent-gold);
}

.slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.slide {
  min-width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

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

.quote-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 24px;
}

.testimonial-card blockquote {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 30px;
  font-style: italic;
}

.client-info h4 {
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.client-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.slider-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-deep);
  border-color: transparent;
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--accent-gold);
  width: 24px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(109, 151, 115, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-deep);
  flex-shrink: 0;
}

.info-details h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-socials {
  margin-top: 15px;
}

.contact-socials h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(12, 59, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-deep);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--primary-deep);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(109, 151, 115, 0.2);
  background-color: var(--bg-light);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-deep);
  background-color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Floating WhatsApp Bubble */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

/* Footer */
footer {
  background-color: #061d17;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* Animations on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .about-badge {
    right: 0;
  }
  
  .planner-wrapper {
    grid-template-columns: 1fr;
  }
  
  .planner-form-panel {
    border-right: none;
    border-bottom: 1px solid rgba(12, 59, 46, 0.08);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    display: grid;
  }
  
  .nav-menu {
    position: fixed;
    top: 155px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 155px);
    background-color: var(--primary-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  header.scrolled .nav-menu {
    top: 116px;
    height: calc(100vh - 116px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    color: var(--white);
    font-size: 1.2rem;
  }
  
  .nav-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Mobile Modal Responsiveness */
  .modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 20px 10px;
  }
  
  .modal-content {
    width: 95%;
    padding: 30px 20px;
    margin: 20px auto;
  }
  
  .modal h3 {
    font-size: 1.6rem;
    padding-right: 25px;
  }
  
  .modal-close {
    top: 15px;
    right: 15px;
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .toggle-grid {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .modal-actions .btn {
    width: 100%;
  }
}
