@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --emerald-50: #f0f7fb;
  --emerald-100: #e0f0f7;
  --emerald-200: #bedff0;
  --emerald-300: #5caedb;
  --emerald-400: #59abd4;
  --emerald-500: #055da7;
  --emerald-600: #1f4d64;
  --emerald-700: #173b4d;
  --emerald-800: #0f2834;
  --emerald-900: #000000;
  --emerald-950: #000000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gold: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.navbar.scrolled .nav-logo {
  color: var(--emerald-700);
}

.nav-logo svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-400);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--emerald-400);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--emerald-600);
}

.nav-cta {
  background: var(--emerald-500);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--emerald-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.nav-cta::after {
  display: none !important;
}

.navbar .mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gray-800);
  transition: all 0.3s;
  display: block;
}

.navbar.scrolled .mobile-toggle span {
  background: var(--gray-700);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.7) 0%, rgba(4, 120, 87, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: var(--emerald-200);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-400);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--emerald-300);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-500);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--emerald-600);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  font-size: 2rem;
  color: var(--white);
  font-weight: 800;
}

.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--emerald-400);
  border-color: var(--emerald-400);
  width: 32px;
  border-radius: 6px;
}

/* ====== SEARCH BAR ====== */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.search-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.search-field input,
.search-field select {
  width: 100%;
  border: none;
  font-size: 1rem;
  color: var(--gray-800);
  padding: 8px 0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  border-bottom: 2px solid var(--gray-200);
  transition: var(--transition);
}

.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-bottom-color: var(--emerald-500);
}

.search-field select {
  cursor: pointer;
  appearance: none;
}

.search-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

.search-btn {
  background: var(--emerald-500);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--emerald-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  margin-top: 8px;
  display: none;
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
}

.search-autocomplete.show {
  display: block;
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition);
}

.autocomplete-item:hover {
  background: var(--emerald-50);
}

.autocomplete-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--emerald-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-600);
  font-size: 1rem;
}

.autocomplete-item .info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}

.autocomplete-item .info p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ====== SECTION STYLES ====== */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-600);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-label .line {
  width: 32px;
  height: 2px;
  background: var(--emerald-400);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
}

/* ====== TOUR CARDS ====== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.tour-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.08);
}

.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--emerald-500);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.tour-card-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  transition: var(--transition);
}

.tour-card-fav:hover,
.tour-card-fav.liked {
  color: #ef4444;
}

.tour-card-body {
  padding: 20px 24px;
}

.tour-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald-600);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.tour-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.4;
}

.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.tour-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.tour-card-price {
  font-family: 'Outfit';
}

.tour-card-price .from {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.tour-card-price .amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--emerald-700);
}

.tour-card-price .per {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.tour-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 0.9rem;
}

.tour-card-rating span {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ====== FILTER TABS ====== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: var(--transition);
}

.filter-tab:hover {
  background: var(--emerald-100);
  color: var(--emerald-700);
}

.filter-tab.active {
  background: var(--emerald-500);
  color: var(--white);
}

/* ====== WHY CHOOSE US ====== */
.why-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--gray-100);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-200);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--emerald-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--emerald-600);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--emerald-500);
  color: var(--white);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ====== DESTINATIONS ====== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.dest-card.tall {
  grid-row: span 2;
  height: 100%;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(0deg, rgba(6, 78, 59, 0.8) 0%, rgba(6, 78, 59, 0.2) 60%);
}

.dest-card-overlay h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.dest-card-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.dest-card-overlay .tour-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--white);
  margin-top: 10px;
  backdrop-filter: blur(4px);
}

/* ====== TESTIMONIALS ====== */
.testimonials-section {
  background: var(--emerald-950);
  color: var(--white);
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--emerald-200);
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ====== CTA BANNER ====== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-600) 0%, var(--emerald-800) 100%);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .decor {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

/* ====== FOOTER ====== */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--emerald-500);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 'Outfit';
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--emerald-400);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ====== MODAL ====== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.modal-header h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-700);
}

.modal-body {
  padding: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--emerald-500);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--emerald-600);
}

/* ====== TOUR DETAIL PAGE ====== */
.tour-detail-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
}

.tour-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-detail-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
}

.tour-detail-hero .content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
}

.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 48px 0;
}

.tour-detail-main {}

.detail-section {
  margin-bottom: 40px;
}

.detail-section h2 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--emerald-100);
}

/* Accordion */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}

.accordion-header:hover {
  background: var(--emerald-50);
}

.accordion-header.active {
  background: var(--emerald-50);
  color: var(--emerald-700);
}

.accordion-header .icon {
  transition: transform 0.3s ease;
}

.accordion-header.active .icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--gray-50);
}

.accordion-body-inner {
  padding: 20px 24px;
}

.accordion-body-inner p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 8px;
}

.accordion-body-inner ul {
  padding-left: 16px;
}

.accordion-body-inner ul li {
  color: var(--gray-600);
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.accordion-body-inner ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald-500);
  font-weight: 700;
}

/* Inclusions */
.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.inclusion-list h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inclusion-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.inclusion-list.included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald-500);
  font-weight: 700;
}

.inclusion-list.excluded li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

/* Sidebar */
.tour-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
}

.sidebar-price {
  margin-bottom: 20px;
}

.sidebar-price .from {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.sidebar-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--emerald-700);
  font-family: 'Outfit';
}

.sidebar-price .per {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.sidebar-info {
  margin-bottom: 20px;
}

.sidebar-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-info-item:last-child {
  border-bottom: none;
}

.sidebar-info-item .label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.sidebar-info-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-left: auto;
}

.sidebar-book-btn {
  width: 100%;
  padding: 16px;
  background: var(--emerald-500);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sidebar-book-btn:hover {
  background: var(--emerald-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.sidebar-whatsapp {
  width: 100%;
  padding: 14px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sidebar-whatsapp:hover {
  background: #1ebe57;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--emerald-50);
}

.faq-question.active {
  background: var(--emerald-50);
  color: var(--emerald-700);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 16px 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}

/* ====== TOAST ====== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
}

.toast {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 320px;
  animation: toastIn 0.4s ease;
  border-left: 4px solid var(--emerald-500);
}

.toast.error {
  border-left-color: #ef4444;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast-icon {
  font-size: 1.2rem;
}

.toast-msg {
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
}

/* ====== PAGE HEADER ====== */
.page-header {
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-950) 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--emerald-300);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: var(--emerald-300);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ====== BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--emerald-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--emerald-600);
  transform: translateY(-4px);
}

/* ====== LOADING ====== */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ====== ANIMATIONS ====== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .tour-detail-layout {
    grid-template-columns: 1fr;
  }

  .tour-sidebar {
    position: static;
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-card.tall {
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(255, 255, 255, 0.98);
  }

  .navbar .nav-logo {
    color: var(--emerald-600);
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--gray-800) !important;
    padding: 8px 0;
    width: 100%;
    display: block;
  }

  .nav-dropdown-wrapper .nav-dropdown {
    position: static !important;
    box-shadow: none !important;
    padding: 0 0 0 16px !important;
    display: flex !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown-wrapper.active .nav-dropdown {
    max-height: 500px;
  }

  .nav-links a:hover {
    color: var(--emerald-500) !important;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .search-box {
    flex-direction: column;
    padding: 20px;
  }

  .search-divider {
    width: 100%;
    height: 1px;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
}

.responsive-flex {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.responsive-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.horizontal-tour-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
}

.htc-img {
  width: 280px;
  min-height: 200px;
  position: relative;
  flex-shrink: 0;
}

.htc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.htc-content {
  padding: 24px 32px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.htc-info {
  padding-right: 24px;
  flex: 1;
}

.htc-pricing {
  text-align: center;
  border-left: 1px solid var(--gray-200);
  padding-left: 32px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .responsive-flex {
    flex-direction: column !important;
  }

  .responsive-grid-3 {
    grid-template-columns: 1fr;
  }

  .horizontal-tour-card {
    flex-direction: column !important;
  }

  .htc-img {
    width: 100%;
    height: 220px;
  }

  .htc-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .htc-info {
    padding-right: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 20px;
    width: 100%;
  }

  .htc-pricing {
    border-left: none;
    padding-left: 0;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .htc-pricing br {
    display: none;
  }

  .tour-detail-layout {
    padding: 24px 0;
  }

  h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
  }

  .dest-bottom-content h3 {
    font-size: 1.4rem !important;
  }

  .faq-container {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .container {
    padding: 0 16px;
  }

  .page-header {
    padding: 100px 0 30px !important;
  }

  .page-header h1 {
    font-size: 1.8rem !important;
  }

  .responsive-flex>div {
    width: 100% !important;
    flex: none !important;
  }

  .responsive-flex img {
    width: 100% !important;
    height: 220px !important;
  }

  .responsive-grid-3 {
    grid-template-columns: 1fr !important;
  }
}

/* ====== HIDE PREVIOUS FILES ====== */
.hidden {
  display: none !important;
}