/* Modern Travel Website - Complete Redesign */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern Color Palette */
  --primary-blue: #0ea5e9;
  --primary-orange: #f97316;
  --primary-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-green: #10b981;
  --accent-yellow: #fbbf24;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  --gradient-button: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --gradient-section: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-colored: 0 10px 25px -5px rgba(14, 165, 233, 0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--gray-900);
}

h1 { 
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 { 
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

h3 { 
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.3;
}

h4 { 
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.4;
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--gray-600);
}

/* Enhanced Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 18px) clamp(28px, 6vw, 36px);
  border: none;
  border-radius: 12px;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 1.2;
  min-height: 52px;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-button);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2xl);
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-full {
  width: 100%;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 10vw, 80px);
  padding: 0 clamp(16px, 4vw, 24px);
}

.section-header h2 {
  margin-bottom: 20px;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-button);
  border-radius: 2px;
}

.section-header p {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--gray-200);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(16px, 4vw, 20px) clamp(16px, 4vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.logo-image {
  height: clamp(40px, 8vw, 56px);
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-button);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-orange);
}

.nav-link.book-btn {
  background: var(--gradient-button);
  color: var(--white);
  padding: clamp(10px, 2.5vw, 14px) clamp(20px, 4vw, 28px);
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.nav-link.book-btn::after {
  display: none;
}

.nav-link.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gray-700);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: clamp(600px, 100vh, 900px);
  background: url('https://images.pexels.com/photos/2662116/pexels-photo-2662116.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}


@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  color: var(--white);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  line-height: 1.1;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  color: var(--white);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: clamp(16px, 4vw, 24px);
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.6s both;
}

/* Destinations Section */
.destinations {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--white);
  position: relative;
}

.destinations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 5vw, 32px);
  margin-bottom: clamp(48px, 8vw, 64px);
  position: relative;
  z-index: 1;
}

.destination-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--gradient-card);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.destination-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.card-image {
  position: relative;
  height: clamp(220px, 45vw, 320px);
  overflow: hidden;
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover .card-image img {
  transform: scale(1.15);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 5vw, 32px);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-overlay h3 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.card-overlay p {
  opacity: 0.9;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--white);
}

.price {
  background: var(--gradient-button);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 700;
  display: inline-block;
  box-shadow: var(--shadow-md);
}

/* Services Section */
.services {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 6vw, 40px);
  position: relative;
  z-index: 1;
}

.service-card {
  text-align: center;
  padding: clamp(40px, 8vw, 48px) clamp(24px, 5vw, 32px);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--gradient-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: clamp(80px, 15vw, 100px);
  height: clamp(80px, 15vw, 100px);
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-colored);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: var(--gray-900);
}

.service-card p {
  line-height: 1.7;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  color: var(--gray-600);
}

/* Testimonials Section */
.testimonials {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--white);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 75%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 75% 25%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  z-index: 1;
}

.testimonial-card {
  display: none;
  text-align: center;
  padding: clamp(32px, 6vw, 48px);
  background: var(--gradient-card);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.6s ease-in-out;
}

.stars {
  margin-bottom: 2rem;
}

.stars i {
  color: var(--accent-yellow);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0 3px;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-content p {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.testimonial-author img {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--gray-900);
  font-size: clamp(1.125rem, 3vw, 1.25rem);
}

.testimonial-author span {
  color: var(--gray-500);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot.active,
.dot:hover {
  background: var(--primary-orange);
  transform: scale(1.3);
  box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 60%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  margin-bottom: 3rem;
  text-align: center;
  color: var(--gray-900);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 4vw, 20px);
  margin-bottom: 2.5rem;
  padding: clamp(24px, 5vw, 32px);
  background: var(--gradient-card);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.contact-item i {
  color: var(--primary-orange);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.contact-item p {
  margin: 0;
  color: var(--gray-600);
}

/* Booking Section */
.booking {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--gradient-hero);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
}

.booking-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  position: relative;
  z-index: 1;
}

.booking-form-container h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--white);
}

.booking-form {
  background: rgba(255, 255, 255, 0.15);
  padding: clamp(32px, 6vw, 48px);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-2xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 24px);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--white);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: clamp(16px, 4vw, 20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  transition: all 0.3s ease;
  min-height: 56px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-yellow);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
  transform: translateY(-2px);
}

.form-group select option {
  background: var(--gray-800);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: clamp(100px, 20vw, 120px);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: clamp(60px, 12vw, 80px) 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(40px, 8vw, 60px);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
}

.footer-logo p {
  color: var(--gray-400);
  line-height: 1.7;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  width: clamp(48px, 10vw, 56px);
  height: clamp(48px, 10vw, 56px);
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  box-shadow: var(--shadow-md);
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: clamp(1.25rem, 3vw, 1.375rem);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.footer-section ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.footer-section ul li a:hover {
  color: var(--primary-orange);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--gray-400);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.footer-contact i {
  color: var(--primary-orange);
  width: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: var(--gray-400);
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
  animation: slideInUp 0.8s ease-out;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: scale(1.1);
  color: var(--white);
  box-shadow: var(--shadow-2xl);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Page Headers */
.page-header {
  height: clamp(96vh, 70vh, 80vh);
  background: url('https://images.pexels.com/photos/2662116/pexels-photo-2662116.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 clamp(16px, 12px, 24px);
}

.page-header h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--white);
}

.page-header p {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.6;
}

/* Destinations Page */
.destinations-page {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--white);
  position: relative;
}

.destinations-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.destinations-filter {
  text-align: center;
  margin-bottom: clamp(60px, 10vw, 80px);
  padding: 0 clamp(16px, 4vw, 24px);
}

.destinations-filter h2 {
  margin-bottom: 2.5rem;
  color: var(--gray-900);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 20px);
  flex-wrap: wrap;
}

.filter-btn {
  padding: clamp(12px, 3vw, 16px) clamp(20px, 4vw, 28px);
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-button);
  color: var(--white);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.destinations-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 5vw, 32px);
}

.destination-card-page {
  background: var(--gradient-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.destination-card-page:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
}

.card-image-page {
  position: relative;
  height: clamp(200px, 40vw, 280px);
  overflow: hidden;
  flex-shrink: 0;
}

.card-image-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card-page:hover .card-image-page img {
  transform: scale(1.15);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-button);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.card-content-page {
  padding: clamp(20px, 5vw, 32px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content-page h3 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.destination-description {
  color: var(--gray-600);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.destination-features {
  display: flex;
  gap: clamp(12px, 3vw, 16px);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.destination-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--gray-500);
}

.destination-features i {
  color: var(--primary-orange);
  flex-shrink: 0;
}

.price-section {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: auto;
}

.price-section .price {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 800;
  color: var(--primary-orange);
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.price-note {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--gray-500);
}

/* Destination Detail Pages */
.destination-hero {
  height: clamp(100vh, 80vh, 90vh);
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
}

.destination-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.destination-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.destination-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  width: 100%;
}

.destination-hero h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  color: var(--white);
}

.destination-hero p {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  color: var(--white);
}

.destination-quick-info {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(16px, 4vw, 20px);
  max-width: 800px;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: clamp(10px, 3vw, 16px) clamp(16px, 4vw, 20px);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-info-item i {
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.destination-details {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--white);
  position: relative;
}

.destination-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 75% 25%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.destination-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.destination-main {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 8vw, 60px);
}

.destination-overview h2 {
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.destination-overview p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.destination-highlights h3,
.destination-activities h3 {
  color: var(--gray-900);
  margin-bottom: 2.5rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(24px, 5vw, 32px);
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 16px;
  transition: transform 0.3s ease;
  background: var(--gradient-card);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.highlight-item img {
  width: 100%;
  height: clamp(140px, 30vw, 180px);
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.highlight-item img:hover {
  transform: scale(1.05);
}

.highlight-item h4 {
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.highlight-item p {
  color: var(--gray-600);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.activities-list {
  display: grid;
  gap: clamp(20px, 4vw, 28px);
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 4vw, 20px);
  padding: clamp(24px, 5vw, 32px);
  background: var(--gradient-card);
  border-radius: 16px;
  transition: transform 0.3s ease;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.activity-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.activity-item i {
  color: var(--primary-orange);
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.activity-item h4 {
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.activity-item p {
  color: var(--gray-600);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin: 0;
}

.destination-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.booking-card {
  background: var(--gradient-card);
  padding: clamp(32px, 6vw, 40px);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.booking-card h3 {
  color: var(--gray-900);
  margin-bottom: 2rem;
  text-align: center;
}

.price-display {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: clamp(20px, 5vw, 28px);
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.price-from {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.price-amount {
  display: block;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 0.25rem;
}

.price-per {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--gray-500);
}

.package-includes {
  margin-bottom: 2.5rem;
}

.package-includes h4 {
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.package-includes ul {
  list-style: none;
  padding: 0;
}

.package-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.package-includes i {
  color: var(--accent-green);
  font-size: 1rem;
  flex-shrink: 0;
}

.booking-card .btn {
  margin-bottom: 1rem;
}

.booking-card .btn:last-child {
  margin-bottom: 0;
}

.travel-tips {
  background: var(--gradient-card);
  padding: clamp(32px, 6vw, 40px);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.travel-tips h3 {
  color: var(--gray-900);
  margin-bottom: 2rem;
  text-align: center;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 4vw, 20px);
  margin-bottom: 2rem;
}

.tip-item:last-child {
  margin-bottom: 0;
}

.tip-item i {
  color: var(--primary-orange);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.tip-item h4 {
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
}

.tip-item p {
  color: var(--gray-600);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin: 0;
}

/* Related Destinations */
.related-destinations {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--white);
  position: relative;
}

.related-destinations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.related-destinations h2 {
  text-align: center;
  color: var(--gray-900);
  margin-bottom: clamp(48px, 8vw, 64px);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(24px, 5vw, 32px);
  max-width: 1000px;
  margin: 0 auto;
}

.related-card {
  background: var(--gradient-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.related-card img {
  width: 100%;
  height: clamp(180px, 35vw, 220px);
  object-fit: cover;
  flex-shrink: 0;
}

.related-content {
  padding: clamp(20px, 5vw, 28px);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-content h3 {
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.related-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  flex-grow: 1;
}

.related-price {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
}

/* CTA Section */
.cta-section {
  padding: clamp(80px, 15vw, 120px) 0;
  background: var(--primary-blue);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-content p {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  color: var(--white);
}

.cta-buttons {
  display: flex;
  gap: clamp(16px, 4vw, 24px);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: scaleIn 0.3s ease-out;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 80vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  transition: opacity 0.3s ease;
}

.modal-close:hover {
  opacity: 0.7;
}

.modal-caption {
  color: var(--white);
  text-align: center;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

/* Error and Success States */
.error {
  border-color: var(--accent-pink) !important;
  background-color: rgba(236, 72, 153, 0.1) !important;
}

.error-message {
  color: var(--accent-pink);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.success {
  border-color: var(--accent-green) !important;
  background-color: rgba(16, 185, 129, 0.1) !important;
}

.success-message {
  color: var(--accent-green);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid var(--gray-300);
  border-top: 3px solid var(--primary-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .destination-quick-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .destination-content {
    grid-template-columns: 2fr 1fr;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .testimonial-author {
    flex-wrap: nowrap;
  }
  
  .destination-quick-info {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .destinations-grid,
  .destinations-grid-page {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .destinations-grid,
  .destinations-grid-page {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Navigation */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-xl);
    padding: 2rem 0;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }
  
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .destination-card:hover,
  .service-card:hover,
  .related-card:hover,
  .activity-item:hover,
  .contact-item:hover {
    transform: none;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  .destination-card:active,
  .service-card:active,
  .related-card:active {
    transform: scale(0.98);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .whatsapp-float {
    animation: none;
  }
  
  .hero::before {
    animation: none;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus,
.filter-btn:focus,
.whatsapp-float:focus {
  outline: 3px solid var(--primary-orange);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 10001;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Print styles */
@media print {
  .navbar,
  .booking,
  .footer,
  .whatsapp-float {
    display: none;
  }
  
  .hero {
    height: auto;
    padding: 2rem 0;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
  
  .btn {
    border: 1px solid black;
  }
}


/* Make Changes */

/* ========================================= */
/* Professional Destination Itinerary       */
/* ========================================= */

.destination-itinerary {
  position: relative;
  margin-top: 3rem;
}

/* The vertical timeline bar */
.destination-itinerary::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 20px;
  bottom: 90px;
  width: 4px;
  background: var(--gray-200);
  border-radius: 2px;
}

.destination-itinerary h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--gray-800);
  position: relative;
}

.destination-itinerary h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--gradient-button);
  border-radius: 2px;
}

.itinerary-item {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem; /* Increased left padding */
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.itinerary-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

/* The circular marker on the timeline */
.itinerary-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 28px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: var(--white);
  border: 4px solid var(--primary-orange);
  z-index: 1;
  transition: all 0.3s ease;
}

.itinerary-item:hover::before {
  border-color: var(--primary-blue);
  transform: scale(1.1);
}

.itinerary-item h4 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.itinerary-item p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.itinerary-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
  margin-top: 1rem;
}

.itinerary-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
}

.itinerary-details i {
  color: var(--accent-green);
}

/* Itinerary responsive adjustments */
@media screen and (max-width: 768px) {
  .destination-itinerary::before {
    left: 10px;
  }
  .itinerary-item {
    padding-left: 2.5rem;
  }
  .itinerary-item::before {
    left: 2px;
    top: 24px;
  }
}

/* ========================================= */
/* Professional & Responsive Price Table   */
/* ========================================= */

.price-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
}

.price-table th, .price-table td {
  padding: 1rem;
}

.price-table thead {
  background-color: var(--gray-800);
  color: var(--white);
}

.price-table th {
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background-color 0.3s ease;
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
  background-color: var(--gray-50);
}

.price-table tbody tr:hover {
  background-color: var(--gray-100);
}

.price-table td {
  color: var(--gray-700);
}

.price-table td[data-label*="Cost"] {
  font-weight: 700;
  color: var(--primary-orange);
  font-size: 1.1rem;
}

/* Responsive Styles for Price Table */
@media screen and (max-width: 768px) {
  .price-table thead {
    display: none; /* Hide the table header on mobile */
  }

  .price-table table, 
  .price-table tbody, 
  .price-table tr, 
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
  }
  
  .price-table td {
    text-align: right;
    position: relative;
    padding-left: 50%;
    border-bottom: 1px solid var(--gray-100);
  }

  .price-table td:last-child {
    border-bottom: none;
  }

  .price-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    width: calc(70% - 2rem);
    text-align: left;
    font-weight: 600;
    color: var(--gray-800);
  }
}