* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
}

.hero-meta svg {
  width: 20px;
  height: 20px;
}

.route-summary svg,
.summary-item svg {
  width: 20px;
  height: 20px;
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

.highlight-card svg,
.overview-icon svg,
.stat-icon svg {
  width: 24px;
  height: 24px;
}

.day-activities svg,
.activity-details svg {
  width: 24px;
  height: 24px;
}

.comment-card svg,
.share-icons svg {
  width: 24px;
  height: 24px;
}

.section svg {
  width: 24px;
  height: 24px;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

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

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

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

.card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card-excerpt {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  height: 40px;
  padding: 5px 0;
}

.logo img {
  height: 40px;
  width: 140px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #1f2937;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hamburger {
  display: none;
  cursor: pointer;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1920');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.route-summary {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.summary-item svg {
  width: 20px;
  height: 20px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.highlight-card {
  text-align: center;
  padding: 24px;
  background-color: var(--bg-white);
  border-radius: 12px;
}

.highlight-card svg {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.highlight-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.highlight-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.daily-itinerary {
  margin: 40px 0;
}

.day-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.day-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.day-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.day-activities {
  margin-left: 56px;
}

.activity {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.activity:last-child {
  border-bottom: none;
}

.activity-time {
  font-weight: 600;
  color: var(--primary-color);
}

.activity-name {
  font-weight: 500;
}

.activity-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.tips-section {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.tip-item {
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.tip-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tip-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.comments-section {
  margin: 40px 0;
}

.comment-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.comment-author {
  font-weight: 600;
}

.comment-date {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.comment-content {
  color: var(--text-secondary);
}

.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.search-bar input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
}

.search-bar button {
  padding: 12px 32px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
}

.filter-group select {
  padding: 10px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
}

.map-container {
  height: 400px;
  background-color: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.map-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.marker {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.marker:hover {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.map-legend {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.blog-post {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-post img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-category {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.about-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.about-section p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.team-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.social-proof {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0;
}

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

.social-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.social-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

footer {
  background-color: var(--text-primary);
  color: white;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h4 {
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .route-summary {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .social-proof {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  
  .section-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .card {
    margin-bottom: 16px;
  }
  
  .hero {
    padding: 100px 16px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
  
  .logo img {
    width: 110px !important;
    height: auto !important;
  }
  
  .nav-container {
    padding: 12px 16px;
  }
  
  footer {
    padding: 30px 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom {
    font-size: 0.75rem;
  }
  
  .persona-card {
    padding: 24px 16px;
  }
  
  .persona-card h3 {
    font-size: 1.25rem;
  }
  
  .highlights {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .highlight-card {
    padding: 20px;
  }
  
  .route-overview-grid {
    grid-template-columns: 1fr !important;
  }
  
  .overview-card {
    padding: 20px;
  }
  
  .day-card {
    padding: 20px 16px;
  }
  
  .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .day-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
    flex-shrink: 0;
  }
  
  .day-title {
    font-size: 1.25rem;
  }
  
  .blog-post img {
    height: 200px;
  }
  
  .blog-content {
    padding: 16px;
  }
  
  .blog-title {
    font-size: 1.25rem;
  }
  
  .search-bar {
    flex-direction: column;
    gap: 12px;
  }
  
  .search-bar input {
    width: 100%;
  }
  
  .search-bar button {
    width: 100%;
  }
  
  .filters {
    flex-direction: column;
    gap: 16px;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .filter-group select {
    width: 100%;
  }
  
  .map-container {
    height: 300px;
  }
  
  .interaction-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .stat-item {
    justify-content: flex-start;
    gap: 12px;
  }
  
  .interaction-bar {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .share-icons {
    flex-wrap: wrap;
  }
  
  .comment-card {
    padding: 16px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .gallery-item-1,
  .gallery-item-6 {
    grid-column: span 1 !important;
  }
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
}

.tags-section {
  margin: 24px 0;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.all-reviews-section {
  background-color: var(--bg-light);
  padding: 48px 20px;
}

.all-reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.all-reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.all-reviews-header h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.all-reviews-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.all-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.all-review-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.all-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.all-review-route {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
}

.all-reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.all-reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.all-reviewer-details h4 {
  font-weight: 600;
  margin-bottom: 2px;
}

.all-reviewer-details p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.all-review-rating {
  color: #f59e0b;
  margin-bottom: 12px;
}

.all-review-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.add-review-section {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}

.add-review-section h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.add-review-section p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.add-review-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-review-btn {
  width: 100%;
  padding: 14px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.budget-low { color: #10b981; }

.search-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-result-item:hover {
  background-color: var(--bg-light);
}

.search-result-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.search-result-item h4 {
  margin-bottom: 2px;
}

.search-result-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn-facebook {
  background-color: #1877F2;
  color: white;
}

.share-btn-twitter {
  background-color: #1DA1F2;
  color: white;
}

.share-btn-pinterest {
  background-color: #E60023;
  color: white;
}

.share-btn-email {
  background-color: #6b7280;
  color: white;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.review-submitted {
  background-color: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: none;
}

.review-submitted.active {
  display: block;
}

.nav-links li:hover .submenu {
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 100;
}

.submenu li {
  padding: 8px 16px;
}

.submenu li a {
  color: var(--text-primary);
  text-decoration: none;
  display: block;
}

.submenu li:hover {
  background-color: var(--bg-light);
}
.budget-mid { color: #f59e0b; }
.budget-high { color: #ef4444; }

.difficulty-easy { color: #10b981; }
.difficulty-moderate { color: #f59e0b; }
.difficulty-hard { color: #ef4444; }

.persona-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.persona-icon {
  width: 64px;
  height: 64px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.persona-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}

.persona-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 12px;
}

.persona-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.persona-age {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.persona-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}

.persona-card .btn {
  width: 100%;
  max-width: 200px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

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

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.interaction-bar {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.interaction-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.interaction-btn:hover {
  color: var(--primary-color);
}

.interaction-btn.active {
  color: var(--primary-color);
}

.interaction-btn svg {
  width: 18px;
  height: 18px;
}

.share-dropdown {
  position: relative;
}

.share-dropdown-content {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 8px;
  min-width: 150px;
  z-index: 10;
}

.share-dropdown:hover .share-dropdown-content {
  display: flex;
  gap: 8px;
}

.share-dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.share-dropdown-content a:hover {
  background-color: var(--primary-color);
  color: white;
}

.map-popup {
  position: absolute;
  background-color: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  min-width: 280px;
  z-index: 20;
  display: none;
}

.map-popup.active {
  display: block;
}

.map-popup h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.map-popup p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.map-popup .route-count {
  font-weight: 600;
  color: var(--primary-color);
}

.route-card-mini {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.route-card-mini:last-child {
  border-bottom: none;
}

.route-card-mini img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.route-card-mini-content h5 {
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.route-card-mini-content span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schema-markup {
  display: none;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info .name {
  font-weight: 600;
}

.testimonial-author-info .location {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.star-rating {
  color: #f59e0b;
  margin-bottom: 8px;
}

.related-routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.related-route-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-route-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-route-card-content {
  padding: 16px;
}

.related-route-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.related-route-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .route-summary {
    flex-wrap: wrap;
  }

  .social-proof {
    flex-wrap: wrap;
    gap: 24px;
  }

  .persona-card {
    padding: 24px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    flex-direction: column;
  }

  .day-activities {
    margin-left: 0;
    margin-top: 16px;
  }

  .day-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .day-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .interaction-bar {
    flex-wrap: wrap;
  }

  .map-container {
    height: 300px;
  }

  .hero-carousel {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
  }

  .carousel-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .carousel-slide.active {
    opacity: 1;
  }

  .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  }

  .carousel-overlay .container {
    max-width: 800px;
    color: white;
    text-align: center;
  }

  .carousel-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  }

  .carousel-overlay p {
    font-size: 1.25rem;
    margin-bottom: 24px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }

  .hero-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
  }

  .hero-meta svg {
    width: 20px;
    height: 20px;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .carousel-prev, .carousel-next {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.3s;
  }

  .carousel-prev:hover, .carousel-next:hover {
    background: rgba(255,255,255,0.5);
  }

  .carousel-dots {
    display: flex;
    gap: 8px;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
  }

  .carousel-dot.active {
    background: white;
    transform: scale(1.2);
  }

  .route-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
  }

  .route-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary-color);
  }

  .route-intro .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
  }

  .route-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
  }

  .overview-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .overview-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .overview-icon svg {
    width: 28px;
    height: 28px;
    color: white;
  }

  .overview-card h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }

  .overview-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .route-highlight-image {
    margin: 48px 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }

  .route-highlight-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .highlight-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
  }

  .highlight-caption p {
    font-size: 1.125rem;
    font-style: italic;
    margin: 0;
  }

  .day-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .day-image {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .day-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .day-image img:hover {
    transform: scale(1.02);
  }

  .day-description {
    margin: 24px 0;
  }

  .day-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .day-highlights {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
  }

  .day-highlights h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--primary-color);
  }

  .day-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .day-highlights li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
  }

  .day-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
  }

  .day-accommodation {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
    color: white;
  }

  .day-accommodation h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    opacity: 0.9;
  }

  .day-accommodation p {
    line-height: 1.6;
    opacity: 0.95;
  }

  .day-activities {
    margin-top: 24px;
  }

  .day-activities .activity {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .day-activities .activity:last-child {
    border-bottom: none;
  }

  .day-activities .activity-time {
    min-width: 80px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9375rem;
  }

  .activity-details {
    flex: 1;
  }

  .activity-details .activity-name {
    font-weight: 600;
    margin-bottom: 4px;
  }

  .activity-details .activity-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .gallery-section {
    margin: 64px 0;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
    margin-top: 32px;
  }

  .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
  }

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

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

  .gallery-item-1 {
    grid-column: span 2;
  }

  .gallery-item-6 {
    grid-column: span 2;
  }

  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
  }

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

  .gallery-overlay p {
    font-weight: 600;
    margin: 0;
  }

  .user-interaction-section {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
    margin: 64px 0;
  }

  .interaction-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .stat-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .stat-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }

  .stat-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
  }

  .stat-icon.liked svg {
    fill: #ef4444;
    color: #ef4444;
  }

  .stat-icon.saved svg {
    fill: var(--secondary-color);
    color: var(--secondary-color);
  }

  .stat-count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
  }

  .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
  }

  .share-buttons {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
  }

  .share-buttons h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .share-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }

  .share-btn svg {
    width: 24px;
    height: 24px;
  }

  .share-facebook { background-color: #1877f2; }
  .share-twitter { background-color: #1da1f2; }
  .share-pinterest { background-color: #bd081c; }
  .share-whatsapp { background-color: #25d366; }
  .share-email { background-color: #6b7280; }

  @media (max-width: 768px) {
    .carousel-overlay h1 {
      font-size: 2rem;
    }

    .carousel-overlay p {
      font-size: 1rem;
    }

    .hero-meta {
      flex-direction: column;
      gap: 12px;
    }

    .hero-cta {
      flex-direction: column;
    }

    .route-overview-grid {
      grid-template-columns: 1fr;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 200px);
    }

    .gallery-item-1, .gallery-item-6 {
      grid-column: span 1;
    }

    .day-card {
      padding: 20px;
    }

    .day-image img {
      height: 250px;
    }

    .interaction-stats {
      flex-direction: column;
      gap: 24px;
    }

    .user-interaction-section {
      padding: 24px;
    }

    .day-activities .activity {
      flex-direction: column;
      gap: 8px;
    }

    .day-activities .activity-time {
      min-width: auto;
    }
  }

  @media (max-width: 480px) {
    .carousel-nav {
      bottom: 20px;
    }

    .carousel-prev, .carousel-next {
      width: 40px;
      height: 40px;
    }

    .route-intro h2 {
      font-size: 1.75rem;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }

    .gallery-item {
      height: 200px;
    }
  }
}