/* Enhanced Mobile-first styles for Kiwi Budget Tour */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Enhanced Color Palette */
  --brand: #1a7038; /* Rich forest green */
  --brand-light: #2a8f4d;
  --brand-lighter: #4ade80; /* Fresh green accent */
  --accent: #0ea5e9; /* Sky blue */
  --accent-dark: #0369a1;
  --warning: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  
  /* Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Backgrounds */
  --bg: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  
  /* Spacing & Layout */
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Animations */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--gray-800);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 95%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Clean Black Top Bar */
.site-header {
  background: #000000 !important;
  background-color: #000000 !important;
  background-image: none !important;
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 50;
  border: none !important;
  border-bottom: none !important;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-image {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4ade80;
  transition: all 0.3s ease;
}

.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.3rem;
}

.company-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.1;
}

.company-name .highlight {
  color: #4ade80;
  font-family: 'Pacifico', cursive;
  font-size: 1.9rem;
}

.tagline {
  font-family: 'Satisfy', cursive;
  font-size: 0.7rem;
  color: #cccccc;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.main-nav a:hover {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  transform: translateY(-1px);
}

.main-nav .cart-link {
  background: linear-gradient(135deg, #1a7038 0%, #4ade80 100%);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(26, 112, 56, 0.4);
}

.main-nav .cart-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 112, 56, 0.6);
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

/* Hamburger and Mobile Nav - Hidden by default on desktop */
.hamburger {
  display: none;
}

.mobile-nav {
  display: none !important;
}

/* Brand Container Styles */
.logo-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(26, 112, 56, 0.4);
  transition: all 0.3s ease;
  border: 3px solid var(--brand-lighter);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.company-name {
  font-family: 'Dancing Script', 'Great Vibes', cursive;
  font-size: 3.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  line-height: 0.9;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.company-name .highlight {
  font-family: 'Pacifico', cursive;
  color: #4ade80;
  font-size: 3.4rem;
  text-shadow: 3px 3px 8px rgba(26, 112, 56, 0.8);
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 6px rgba(26, 112, 56, 0.6));
}

.tagline {
  font-family: 'Satisfy', 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 500;
  color: #f0f0f0;
  margin: -8px 0 0 0;
  font-style: normal;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #f0f0f0 0%, #d1d5db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
}

.logo-link:hover .logo-image {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 25px rgba(26, 112, 56, 0.6);
}

.logo-link:hover .company-name {
  background: linear-gradient(135deg, #ffffff 0%, #4ade80 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(3px 3px 8px rgba(74, 222, 128, 0.8));
  transform: scale(1.02);
}

.logo-link:hover .company-name .highlight {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(3px 3px 10px rgba(34, 197, 94, 0.8));
  transform: scale(1.05);
}

.logo-link:hover .tagline {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 6px rgba(74, 222, 128, 0.7));
  transform: translateY(-2px);
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-lighter) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-fast);
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #e0e0e0;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
}

.main-nav a:hover {
  background: rgba(74, 222, 128, 0.1);
  color: var(--brand-lighter);
  border-color: var(--brand-lighter);
  transform: translateY(-1px);
  text-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.main-nav .cart-link {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(26, 112, 56, 0.4);
  transition: all 0.3s ease;
  border: 1px solid var(--brand-lighter);
}

.main-nav .cart-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(26, 112, 56, 0.6);
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-lighter) 100%);
}

/* Enhanced Hero Section */
.hero-large {
  position: relative;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, 
    rgba(26, 112, 56, 0.9) 0%, 
    rgba(42, 143, 77, 0.8) 50%, 
    rgba(74, 222, 128, 0.7) 100%);
  color: white;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-100px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.1) 0%, 
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy .lead {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-weight: 400;
  animation: slideInUp 1s ease-out 0.2s both;
}

/* Enhanced Search Box */
.search-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: slideInUp 1s ease-out 0.4s both;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box .chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.chip {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.chip:hover {
  background: var(--gray-200);
  transform: translateY(-1px);
}

.chip.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  border-color: var(--brand-light);
  box-shadow: var(--shadow-md);
}

.search-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-box input[type="search"] {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--gray-800);
  font-size: 1rem;
  transition: var(--transition);
}

.search-box input[type="search"]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(26, 112, 56, 0.1);
}

.search-box input::placeholder {
  color: var(--gray-400);
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-lighter) 100%);
}

.btn-secondary {
  background: white;
  color: var(--brand);
  border: 2px solid var(--brand);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* Enhanced Tours Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.tour-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--gray-100);
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.tour-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.tour-card:hover img {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.badge {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  backdrop-filter: blur(10px);
}

.badge.price {
  background: rgba(0, 0, 0, 0.8);
}

.badge.duration {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
}

.tour-card-content {
  padding: 1.5rem;
}

.tour-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tour-card .meta {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Enhanced Features Section */
.features {
  padding: 4rem 0;
  background: white;
}

.features h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--gray-800);
  margin-bottom: 3rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature {
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

/* Enhanced Forms */
.form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: white;
  color: var(--gray-800);
  font-size: 1rem;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(26, 112, 56, 0.1);
}

/* Enhanced Footer */
.site-footer {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 3rem 0 2rem;
  text-align: center;
  margin-top: 4rem;
}

.site-footer a {
  color: var(--brand-lighter);
  text-decoration: none;
  transition: var(--transition);
}

.site-footer a:hover {
  color: white;
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    width: 90%;
    padding: 0 2rem;
  }
  
  .hero-large {
    padding: 6rem 0 4rem;
  }
  
  .search-actions {
    flex-wrap: nowrap;
  }
  
  .search-box input[type="search"] {
    min-width: 300px;
  }
}

@media (min-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Loading Animation */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Additional styles for enhanced homepage sections */

/* Trust Bar */
.trust-bar {
  background: white;
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-100);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
}

.trust-icon {
  font-size: 1.2rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Popular Tours Section */
.popular-tours {
  padding: 4rem 0;
  background: var(--gray-50);
}

/* Enhanced Tour Cards */
.tour-card-content {
  padding: 1.5rem;
}

.tour-highlights {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.card-actions .btn {
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: white;
}

.testimonials h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: var(--gray-800);
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.review {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review .stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review p {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review cite {
  font-weight: 600;
  color: var(--brand);
  font-style: normal;
}

/* Call to Action */
.final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
}

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-benefits {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
  opacity: 0.9;
}

.cta-benefits span {
  font-size: 0.9rem;
}

/* Enhanced Footer */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--gray-100);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section h3 {
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--brand-lighter);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid var(--gray-600);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  /* Compact Mobile Header */
  .site-header {
    padding: 0.3rem 0;
  }
  
  .site-header .container {
    padding: 0.3rem 1rem;
  }
  
  .logo-image {
    width: 28px;
    height: 28px;
  }
  
  .brand-info h1.company-name {
    font-size: 1.3rem;
    margin-bottom: 0.1rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.05rem;
    white-space: nowrap;
  }
  
  .brand-info h1.company-name .highlight {
    font-size: 1rem;
  }
  
  .brand-info .tagline {
    display: block;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1;
  }
  
  .brand-info {
    margin-left: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .header-left {
    display: flex;
    align-items: center;
  }
  
  /* Hide navigation on mobile */
  .main-nav {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-left: auto;
    gap: 5px;
  }
  
  .hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
  }
  
  .mobile-nav {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: #000;
    z-index: 9998;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
  }
  
  .mobile-nav.show {
    display: flex !important;
    max-height: 500px;
  }
  
  .mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid #333;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .mobile-nav.show a {
    opacity: 1;
    transform: translateY(0);
  }
  
  .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
  .mobile-nav a:nth-child(2) { transition-delay: 0.15s; }
  .mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
  .mobile-nav a:nth-child(4) { transition-delay: 0.25s; }
  .mobile-nav a:nth-child(5) { transition-delay: 0.3s; }
  .mobile-nav a:nth-child(6) { transition-delay: 0.35s; }
  
  .mobile-nav a:after {
    display: none;
  }
  
  .mobile-nav a:last-child {
    border-bottom: none;
  }
  
  .trust-items {
    gap: 1rem;
  }
  
  .trust-item {
    font-size: 0.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-benefits {
    flex-direction: column;
    gap: 1rem;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
/* Additional CSS for About Us section and honest business styling */

/* About Us Section */
.about-us {
  padding: 4rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-feature .feature-icon {
  font-size: 1.5rem;
}

.about-feature span:last-child {
  font-weight: 600;
  color: var(--gray-700);
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Enhanced chip styles for navigation */
.chip {
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.chip:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

/* Trust bar improvements for honest claims */
.trust-item {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  transition: var(--transition);
}

.trust-item:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* CTA improvements for new business */
.cta-benefits {
  font-size: 0.95rem;
}

/* Responsive design for about section */
@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .about-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-feature {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 2fr 1fr;
  }
}
/* Additional CSS for enhanced tours page */

/* Page Header */
.page-header {
  text-align: center;
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Filters Row */
.filters-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 3rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Enhanced tour cards with better spacing */
.tours-grid {
  margin-bottom: 4rem;
}

.tour-card[data-category] {
  transition: all 0.3s ease;
}

.tour-card[data-category]:not([style*="display: none"]) {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading state for filtered tours */
.tour-card.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .filters-row {
    padding: 1rem;
  }
  
  .filters {
    gap: 0.5rem;
  }
  
  .page-header {
    padding: 1.5rem 0 2rem;
    margin-bottom: 1.5rem;
  }
}
