/* ============================================
   MADHURAM JOURNEY - TRAVEL AGENCY WEBSITE
   Pure CSS Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --primary: #023E8A;
  --primary-hover: #03045E;
  --primary-light: #0077B6;
  --secondary: #2A9D8F;
  --secondary-hover: #21867A;
  --whatsapp: #25D366;
  --orange: #F97316;
  
  /* Background */
  --bg-main: #FFFFFF;
  --bg-alt: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.9);
  
  /* Text */
  --text-main: #1B263B;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;
  
  /* Border */
  --border-light: #E2E8F0;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section-padding { padding: 6rem 0; }
}

@media (min-width: 1024px) {
  .section-padding { padding: 8rem 0; }
}

.bg-white { background-color: var(--bg-main); }
.bg-alt { background-color: var(--bg-alt); }

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

/* Circular Image */
.circular-image {
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-light);
  box-shadow: var(--shadow-md);
  width: 200px;
  height: 200px;
}

@media (max-width: 480px) {
  .circular-image {
    width: 150px;
    height: 150px;
    border-width: 3px;
  }
}

@media (min-width: 768px) {
  .circular-image {
    width: 250px;
    height: 250px;
  }
}

/* About Founder Grid */
.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-founder-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-founder-grid {
    gap: 4rem;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .section-label { font-size: 0.75rem; }
}

.section-title {
  font-size: 1.875rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-subtitle { font-size: 1.125rem; }
}

@media (max-width: 480px) {
  .section-subtitle { font-size: 0.875rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px rgba(2, 62, 138, 0.3);
}

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


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

/* Live Tour Section */
.live-tour-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.live-tour-content {
  padding-right: 2rem;
}

.live-tour-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.live-tour-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.live-tour-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.live-tour-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
  font-weight: 500;
}

.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.live-tour-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.live-tour-actions .btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.live-tour-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.live-tour-poster {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.live-tour-image:hover .live-tour-poster {
  transform: scale(1.02);
}

.live-tour-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@media (max-width: 1024px) {
  .live-tour-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .live-tour-content {
    padding-right: 0;
    text-align: center;
  }

  .live-tour-title {
    font-size: 2rem;
  }

  .live-tour-description {
    font-size: 1rem;
  }

  .live-tour-features {
    align-items: center;
  }

  .live-tour-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .live-tour-title {
    font-size: 1.75rem;
  }

  .live-tour-actions .btn {
    min-width: auto;
    flex: 1 1 auto;
  }

  .live-tour-actions {
    flex-direction: column;
  }
}

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

.btn-outline:hover {
  background-color: rgba(2, 62, 138, 0.05);
}

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

.btn-outline-white:hover {
  background-color: white;
  color: var(--text-main);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  display: none;
}

@media (min-width: 1024px) {
  .top-bar { display: block; }
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-main);
}

.logo-text span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

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

.nav-buttons {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-buttons { display: flex; }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--text-main);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border-light);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-md);
  transition: background-color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background-color: rgba(2, 62, 138, 0.05);
  color: var(--primary);
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.mobile-menu-buttons .btn {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 5rem 1rem 10rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #5EEAD4, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* Search Box */
.search-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: calc(100% - 2rem);
  max-width: 64rem;
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 640px) {
  .search-box { padding: 2rem; }
}

.search-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .search-box-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .search-box-grid { grid-template-columns: repeat(4, 1fr); }
}

.search-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.search-field label svg {
  color: var(--primary);
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: white;
  color: var(--text-main);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 62, 138, 0.1);
}

.search-btn {
  align-self: flex-end;
}

.search-btn .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
  padding-top: 8rem;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.tabs-list {
  display: inline-flex;
  background: var(--bg-alt);
  padding: 0.25rem;
  border-radius: var(--radius-full);
}

.tab-btn {
  padding: 0.75rem 2rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--primary);
  color: white;
}

.tab-btn:hover:not(.active) {
  color: var(--text-main);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Package Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Package Card */
.package-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.package-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.package-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.package-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.package-location svg {
  color: var(--primary);
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

.stars svg.filled {
  color: #FBBF24;
  fill: #FBBF24;
}

.stars svg.empty {
  color: #E2E8F0;
}

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

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.package-highlights span {
  font-size: 0.75rem;
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
}

.package-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-price {
  display: flex;
  flex-direction: column;
}

.package-price small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.package-price .price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.package-price .original-price {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.view-more-btn {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .destinations-grid .destination-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.destination-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.destination-card .aspect {
  aspect-ratio: 4/5;
}

.destinations-grid .destination-card:first-child .aspect {
  aspect-ratio: 16/10;
}

@media (min-width: 768px) {
  .destinations-grid .destination-card:first-child .aspect {
    aspect-ratio: 16/9;
    height: 100%;
  }
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3) 50%, transparent);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.destination-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.destination-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .destination-title { font-size: 1.5rem; }
}

.destination-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.destination-info .explore {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.2s;
}

.destination-card:hover .explore {
  transform: translateX(0.5rem);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

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

.gallery-card-content {
  padding: 1.5rem;
}

.gallery-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.gallery-card-content p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(2, 62, 138, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
}

.feature-card:hover .feature-icon svg {
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
  margin-top: 5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  padding: 2rem;
}

@media (min-width: 640px) {
  .stats-bar { padding: 3rem; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .stat-number { font-size: 3rem; }
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

@media (min-width: 640px) {
  .testimonial-card { padding: 3rem; }
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  color: rgba(2, 62, 138, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #FBBF24;
  fill: #FBBF24;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .testimonial-text { font-size: 1.25rem; }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(2, 62, 138, 0.1);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Testimonial Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav button {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.testimonial-nav button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots button {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--border-light);
  transition: all 0.2s;
}

.testimonial-dots button.active {
  width: 2rem;
  background: var(--primary);
}

/* ============================================
   UPCOMING TOURS SECTION
   ============================================ */
.upcoming-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .upcoming-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .upcoming-grid { grid-template-columns: repeat(3, 1fr); }
}

.upcoming-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.upcoming-card:hover {
  box-shadow: var(--shadow-xl);
}

.upcoming-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.upcoming-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.upcoming-content {
  padding: 1.5rem;
}

.upcoming-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.upcoming-location svg {
  color: var(--primary);
}

.upcoming-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.upcoming-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.upcoming-seats {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.upcoming-seats svg {
  color: var(--primary);
}

.seats-left {
  color: var(--orange);
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 0.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.upcoming-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.upcoming-price {
  display: flex;
  flex-direction: column;
}

.upcoming-price small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.upcoming-price .price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item .aspect {
  aspect-ratio: 1;
}

.gallery-item:first-child .aspect {
  aspect-ratio: 1;
  height: 100%;
  min-height: 300px;
}

@media (min-width: 768px) {
  .gallery-item:first-child .aspect { min-height: 400px; }
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

.gallery-item .overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s ease;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-title {
  text-align: center;
  color: white;
  font-size: 1.125rem;
  margin-top: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-floating-card {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .about-floating-card { right: -2rem; }
}

.about-floating-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(2, 62, 138, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-floating-icon span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.about-floating-text h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
}

.about-floating-text p {
  color: var(--text-muted);
}

.about-content {
  max-width: 32rem;
}

@media (min-width: 1024px) {
  .about-content { max-width: none; }
}

.about-content .section-label {
  margin-bottom: 1rem;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text.lead {
  font-size: 1.125rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .about-highlights { grid-template-columns: repeat(2, 1fr); }
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-highlight .check-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(42, 157, 143, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-highlight .check-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
}

.about-highlight span {
  color: var(--text-main);
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   ENQUIRY SECTION
   ============================================ */
.enquiry-section {
  background: linear-gradient(135deg, var(--primary), #0353A4);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .enquiry-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.enquiry-content {
  color: white;
}

.enquiry-content .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.enquiry-content .section-title {
  color: white;
}

.enquiry-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.enquiry-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.enquiry-contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.enquiry-contact-text small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.enquiry-contact-text a,
.enquiry-contact-text span {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.enquiry-contact-text a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Enquiry Form */
.enquiry-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 640px) {
  .enquiry-form-card { padding: 2.5rem; }
}

.enquiry-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: white;
  color: var(--text-main);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 62, 138, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #22C55E;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F172A;
  color: #94A3B8;
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.footer-logo .logo-text span:first-child {
  color: white;
}

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: #1E293B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social a svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-light);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item .info h5 {
  color: white;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer-contact-item .info a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ============================================
   STICKY BUTTONS
   ============================================ */
.sticky-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sticky-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

@media (min-width: 640px) {
  .sticky-btn { width: 3.5rem; height: 3.5rem; }
}

.sticky-btn:hover {
  transform: scale(1.1);
}

.sticky-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 640px) {
  .sticky-btn svg { width: 1.75rem; height: 1.75rem; }
}

.sticky-call {
  background: var(--primary);
  color: white;
}

.sticky-whatsapp {
  background: var(--whatsapp);
  color: white;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* ============================================
   PAGE HEADERS (For inner pages)
   ============================================ */
.page-header {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.page-header-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .page-header-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .page-header-title { font-size: 3.75rem; }
}

.page-header-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   FILTER BAR (For tour pages)
   ============================================ */
.filter-bar {
  position: sticky;
  top: 5rem;
  z-index: 50;
  background: white;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.filter-bar .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .filter-bar .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 24rem;
}

.search-input-wrapper svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input-wrapper input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  background: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  min-width: 10rem;
}

.filter-clear {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.filter-clear:hover {
  color: var(--text-main);
}

.packages-count {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.packages-count strong {
  color: var(--text-main);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.contact-card-icon.blue {
  background: rgba(2, 62, 138, 0.1);
  color: var(--primary);
}

.contact-card-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
}

.contact-card-icon.teal {
  background: rgba(42, 157, 143, 0.1);
  color: var(--secondary);
}

.contact-card-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}

.contact-card-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.contact-card-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-card-info a {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-card-info a.blue { color: var(--primary); }
.contact-card-info a.green { color: #22C55E; }
.contact-card-info a.teal { color: var(--secondary); }
.contact-card-info .orange { color: var(--orange); font-size: 1.125rem; font-weight: 600; }

.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

@media (min-width: 640px) {
  .contact-form-card { padding: 2.5rem; }
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .contact-form-card h2 { font-size: 1.875rem; }
}

.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Map Section */
.map-section {
  background: white;
  padding: 3rem 0;
}

.map-section .text-center {
  margin-bottom: 2rem;
}

.map-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .map-section h2 { font-size: 1.875rem; }
}

.map-placeholder {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.map-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: var(--text-muted);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.modal-header {
  position: relative;
  height: 16rem;
}

@media (min-width: 640px) {
  .modal-header { height: 20rem; }
}

.modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.modal-header-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
}

.modal-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.modal-badges span {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.modal-badges .category { background: var(--primary); }
.modal-badges .featured { background: var(--orange); }

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .modal-header h2 { font-size: 1.875rem; }
}

.modal-header-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.modal-header-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.modal-body {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .modal-body { padding: 2rem; }
}

.modal-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-rating .stars {
  display: flex;
  gap: 0.125rem;
}

.modal-rating .stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #FBBF24;
  fill: #FBBF24;
}

.modal-price {
  text-align: right;
}

.modal-price small {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal-price .price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.modal-price .original {
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
  font-size: 1rem;
}

.modal-price .savings {
  font-size: 0.875rem;
  color: #22C55E;
  font-weight: 500;
}

.modal-section {
  margin-bottom: 2rem;
}

.modal-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.modal-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .modal-highlights { grid-template-columns: repeat(2, 1fr); }
}

.modal-highlights .item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-highlights .check {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(42, 157, 143, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-highlights .check svg {
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
}

.modal-inclusions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .modal-inclusions { grid-template-columns: repeat(4, 1fr); }
}

.modal-inclusions .item {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
}

.modal-itinerary .day {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
}

.modal-itinerary .day-num {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.modal-itinerary .day-content h4 {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.modal-itinerary .day-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.show-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 1rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .modal-buttons { flex-direction: row; }
}

.modal-buttons .btn {
  flex: 1;
  justify-content: center;
}

.btn-whatsapp {
  border: 2px solid var(--whatsapp);
  color: #22C55E;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.05);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile { display: block; }
}

.hide-desktop {
  display: block;
}

@media (min-width: 1024px) {
  .hide-desktop { display: none; }
}