:root {
  --primary-color: #4a6cf7;
  --primary-dark: #3b56c4;
  --secondary-color: #ff7e5f;
  --text-color: #333;
  --text-light: #6e7894;
  --background-color: #f8f9fa;
  --card-bg: #ffffff;
  --border-color: #e9ecef;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-main);
  font-size: 0.95rem;
}

.btn i {
  margin-right: 0.5rem;
}

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

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

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

.btn-secondary:hover {
  background-color: rgba(74, 108, 247, 0.05);
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-large {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

/* Header */
header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.logo i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease, transform 0.3s ease;
  transform-origin: left;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
  transform: scaleX(1);
}

.auth-buttons {
  display: flex;
  gap: 0.75rem;
}

.auth-buttons .btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.auth-buttons .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.auth-buttons .btn:hover::after {
  left: 100%;
}

.mobile-menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 101;
}

/* .mobile-menu-toggle:hover {
  background-color: rgba(74, 108, 247, 0.1);
  transform: rotate(90deg);
} */

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transform: translateY(-150%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), max-height 0.4s ease, padding 0.3s ease;
  overflow: hidden;
  padding: 0;
  max-height: 0;
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateY(0);
  max-height: 100vh;
  padding: 1rem 0;
  overflow-y: auto;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  padding: 0;
  margin: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  background-color: rgba(74, 108, 247, 0.1);
  color: var(--primary-color);
}

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

.mobile-menu .auth-buttons {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  gap: 0.75rem;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #1a1a1a; /* Consistent dark background */
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 20px;
  width: 100%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: #1a1a1a; /* Dark background to prevent white flash */
}

.hero-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a; /* Fallback color to prevent white flash */
  transition: opacity 2s ease-in-out; /* Slower transition for smoother crossfade */
  z-index: 1;
}

.hero-carousel .carousel-slide.active {
  opacity: 1;
  z-index: 2; /* Active slide on top */
  transition: opacity 2s ease-in-out;
}

.hero-carousel .carousel-slide.fade-out {
  opacity: 0;
  z-index: 1; /* Fading slide below */
  transition: opacity 2s ease-in-out;
}

/* Ensure first slide doesn't have transition on initial load */
.hero-carousel .carousel-slide:first-child {
  transition: none;
}

/* Smooth loading state for carousel slides */
.hero-carousel .carousel-slide[style*="background-image"] {
  transition: opacity 2s ease-in-out;
}

/* Prevent any white flashes during loading */
.hero-carousel .carousel-slide:not([style*="background-image"]) {
  background-color: #1a1a1a;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

/* Trip Form Section */
.trip-form-section {
  margin-top: -100px;
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}

.form-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.form-card h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Auth Notice */
.auth-notice {
  background-color: rgba(74, 108, 247, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
}

.auth-notice i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.auth-notice p {
  margin: 0;
  color: var(--text-color);
}

.auth-notice a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.auth-notice a:hover {
  color: var(--primary-dark);
}

.trip-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ensure form is fully interactive when authenticated */
.trip-form.authenticated {
  position: relative;
  z-index: 10;
  pointer-events: all;
}

.trip-form.authenticated button[type="submit"] {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}

.form-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

/* Info button and tooltip styles */
.info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  font-size: 9px;
  margin-left: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  vertical-align: text-top;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.info-button:hover {
  background-color: #f5f5f5;
  border-color: #000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  width: 220px;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
  pointer-events: none;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid #333;
  line-height: 1.4;
}

.tooltip::before,
.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  border-style: solid;
}

.tooltip::before {
  margin-left: -6px;
  border-width: 6px;
  border-color: #333 transparent transparent transparent;
}

.tooltip::after {
  margin-left: -5px;
  border-width: 5px;
  border-color: #fff transparent transparent transparent;
}

.info-button:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.label-with-info {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.label-with-toggle .label-with-info {
  margin-bottom: 0;
  flex: 1;
}

.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.input-icon .clear-input {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 500;
  width: 24px;
  height: 24px;
  padding: 0;
  line-height: 1;
}

.input-icon .clear-input:hover {
  color: var(--primary-color);
}

.form-group input,
.form-group select {
  padding: 1rem;
  padding-left: 2.5rem;
  padding-right: 3.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  width: 100%;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

.full-width {
  width: 100%;
}

.preferences {
  flex-direction: column;
}

.preferences h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
}

.preference-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.preference-selection-info {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.preference-selection-info #selectedCount {
  color: var(--primary-color);
  font-weight: 600;
}

.preference-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  flex: 1;
  min-width: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.preference-option:hover {
  border-color: var(--primary-color);
  background-color: rgba(74, 108, 247, 0.05);
}

.preference-option.selected {
  border-color: var(--primary-color);
  background-color: rgba(74, 108, 247, 0.1);
  box-shadow: 0 2px 8px rgba(74, 108, 247, 0.15);
  transform: translateY(-2px);
}

.preference-option input {
  position: absolute;
  opacity: 0;
}

.preference-option input:checked + .preference-icon {
  color: var(--primary-color);
}

.preference-option input:checked ~ span:last-child {
  color: var(--primary-color);
  font-weight: 500;
}

/* Style for both radio buttons and checkboxes to look like our preference options */
.preference-option input[type="radio"] + .preference-icon,
.preference-option input[type="checkbox"] + .preference-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.preference-option input[type="radio"]:checked + .preference-icon,
.preference-option input[type="checkbox"]:checked + .preference-icon {
  color: var(--primary-color);
}

.preference-option input[type="radio"]:checked ~ span:last-child,
.preference-option input[type="checkbox"]:checked ~ span:last-child {
  color: var(--primary-color);
  font-weight: 500;
}

.preference-option input[type="checkbox"]:disabled {
  pointer-events: none;
}

.preference-option.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.preference-option.disabled:hover {
  border-color: var(--border-color);
  background-color: transparent;
  transform: none;
}

.preference-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch.small {
  width: 36px;
  height: 20px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.toggle-switch.small .toggle-slider:before {
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:focus + .toggle-slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.toggle-switch.small input:checked + .toggle-slider:before {
  transform: translateX(16px);
}

.label-with-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.inline-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-label-small {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Itinerary Section */
.itinerary-section {
  padding: 4rem 0;
  background-color: var(--background-color);
  min-height: calc(100vh - 80px - 400px);
}

.itinerary-section.hidden {
  display: none;
}

.itinerary-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trip-overview h2 {
  margin-bottom: 0.5rem;
}

.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-light);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.destination-highlight {
  margin-bottom: 2rem;
}

.destination-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

/* Ensure images fill the entire carousel on desktop */
.destination-carousel .carousel-container {
  width: 100%;
  height: 100%;
}

/* Desktop-specific carousel image styling */
@media (min-width: 992px) {
  .destination-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    display: block;
  }
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
  min-width: 100%;
  min-height: 100%;
}

.carousel-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-image .loading-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #f8f9fa;
  color: #6c757d;
}

.carousel-image .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e9ecef;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.carousel-image .image-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #f8f9fa;
  color: #dc3545;
  font-weight: 500;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 1.5rem;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.carousel-control:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.carousel-control.prev {
  left: 1rem;
}

.carousel-control.next {
  right: 1rem;
}

/* Tabs */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-content {
  margin-bottom: 3rem;
}

.tab-pane {
  display: none;
}

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

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.day-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.day-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.day-header:hover {
  background-color: var(--primary-dark);
}

.day-content {
  padding: 1.5rem;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
}

.day-content.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

/* Place details container styles */
.place-details-container {
  margin-top: 1rem;
  padding: 0;
  transition: all 0.3s ease;
}

.place-details-container.hidden {
  display: none;
}

.place-details {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.place-details h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.place-details p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Ensure activity items have proper spacing */
.activity-item:last-child .place-details-container {
  margin-bottom: 2rem;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.activity-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.activity-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 1rem;
  bottom: -1.5rem;
  width: 2px;
  background-color: var(--border-color);
}





/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.activity-time {
  min-width: 80px;
  text-align: center;
  margin-top: 0.25rem;
}

.activity-time span {
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.activity-details {
  flex: 1;
}

.activity-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.activity-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.activity-category {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.activity-description {
  margin-bottom: 1rem;
}

.activity-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .activity-image {
    height: 200px;
  }
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.meta-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Accommodation Tab */
.accommodation-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.accommodation-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.accommodation-image {
  height: 200px;
  overflow: hidden;
}

.accommodation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
  display: block;
  transition: var(--transition);
}

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

.accommodation-details {
  padding: 1.5rem;
}

.accommodation-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.accommodation-address {
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accommodation-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

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

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

.stars {
  color: #ffc107;
}

.booking-links {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.booking-links h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.booking-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.booking-link:hover {
  transform: translateY(-2px);
}

.booking-com {
  background-color: #003580;
  color: white;
}

.makemytrip {
  background-color: #0066cc;
  color: white;
}

.agoda {
  background-color: #5c2ac5;
  color: white;
}

.redbus {
  background-color: #d84f57;
  color: white;
}

.irctc {
  background-color: #213d77;
  color: white;
}

.ola {
  background-color: #4a4a4a;
  color: white;
}

/* Transportation Tab */
.transport-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.transport-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.transport-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.transport-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.detail-item {
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.detail-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.detail-value {
  font-weight: 500;
}

.route-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  width: 100%;
}

.route-option-card {
  background-color: var(--background-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.route-option-header {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.route-option-details {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.route-detail {
  margin-bottom: 1rem;
  flex: 1;
}

.hubs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.hub-section {
  background-color: var(--background-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.transport-options-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.transport-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background-color: var(--background-color);
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  flex-grow: 1;
  justify-content: center;
}

.transport-booking-links {
  margin-top: 0.5rem;
  width: 100%;
}

.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.local-transport-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.local-transport-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background-color: rgba(74, 108, 247, 0.05);
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  text-align: center;
}

@media (max-width: 768px) {
  .hubs-container {
    grid-template-columns: 1fr;
  }

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

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

  .local-transport-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Travel Tips Tab */
.travel-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.tip-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.tip-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 4rem;
  color: rgba(74, 108, 247, 0.1);
  transform: rotate(10deg);
}

.tip-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.tip-title i {
  color: var(--primary-color);
}

.tip-content {
  position: relative;
  z-index: 1;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
  transform: translateY(-150%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), max-height 0.4s ease, padding 0.3s ease;
  overflow: hidden;
  padding: 0;
  max-height: 0;
}

.mobile-menu.open {
  transform: translateY(0);
  max-height: 100vh;
  padding: 1rem 0;
  overflow-y: auto;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  padding: 0;
  margin: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  background-color: rgba(74, 108, 247, 0.1);
  color: var(--primary-color);
}

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

.mobile-menu .auth-buttons {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  gap: 0.75rem;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x900/?destinations') no-repeat center center/cover;
  padding: 5rem 0;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(74, 108, 247, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: #f0f3fa;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-content {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  position: relative;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
}

.testimonial-content p::before {
  top: -1.5rem;
  left: -0.5rem;
}

.testimonial-content p::after {
  bottom: -3rem;
  right: -0.5rem;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition);
}

.testimonial-nav:hover {
  background-color: var(--primary-color);
  color: white;
}

.testimonial-nav.prev {
  left: 10px;
}

.testimonial-nav.next {
  right: 10px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Footer */
footer {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 5rem 0 2rem;
}

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

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-section p {
  margin-bottom: 1.5rem;
  color: #9ca3af;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #9ca3af;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: white;
  padding-left: 5px;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.subscribe-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.subscribe-form input::placeholder {
  color: #9ca3af;
}

.subscribe-form button {
  padding: 0.75rem 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #9ca3af;
}

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

/* Fancy Loader */
.fancy-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  background-image:
    radial-gradient(rgba(74, 108, 247, 0.1) 1px, transparent 1px),
    radial-gradient(rgba(255, 126, 95, 0.1) 1px, transparent 1px);
  background-size: 40px 40px, 30px 30px;
  background-position: 0 0, 20px 20px;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: fadeInSimple 0.3s ease-out;
  backdrop-filter: blur(3px);
  pointer-events: all;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  background-color: var(--card-bg);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 550px;
  animation: popIn 0.5s ease-out, floatAnimation 3s ease-in-out infinite;
  border: 1px solid rgba(74, 108, 247, 0.1);
  position: relative;
  overflow: hidden;

  transform-origin: center center;
}

.loader-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  z-index: 1;
}

.loader-container h3 {
  color: var(--primary-color);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

.loader-animation {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1.5s linear infinite;
}

.spinner::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid rgba(255, 126, 95, 0.1);
  border-bottom-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}

.location-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: var(--primary-color);
  animation: bounce 1.5s ease-in-out infinite;
  z-index: 2;
}

.location-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 20px rgba(74, 108, 247, 0.3);
}

.loading-message {
  margin: 1rem 0 1.5rem;
  color: var(--text-light);
  transition: opacity 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background-color: rgba(74, 108, 247, 0.05);
  display: inline-block;
  position: relative;
}

.loading-message::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  animation: pulseLight 1.5s infinite;
}

@keyframes pulseLight {
  0% {
    transform: translateY(-50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scale(0.8);
    opacity: 0.5;
  }
}

.image-previews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0rem;
}

.preview-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: scale(0.8);
  animation: fadeIn 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.2s);
}

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

@keyframes bounce {
  0%, 100% { transform: translate(-50%, -65%); }
  50% { transform: translate(-50%, -35%); }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInSimple {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .itinerary-header {
    flex-direction: column;
  }

  .action-buttons {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }

  nav, .auth-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

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

  .hero {
    height: 400px;
  }

  .form-card {
    padding: 1.5rem;
  }

  .preference-options {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  }

  .destination-carousel {
    height: 300px;
    border-radius: var(--radius-md);
  }

  .carousel-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
  }

  /* Ensure carousel slides fit properly on mobile */
  .destination-carousel .carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .activity-item {
    flex-direction: column;
    gap: 1rem;
  }

  .activity-item:not(:last-child)::after {
    display: none;
  }

  .activity-time {
    text-align: left;
  }

  .footer-content {
    gap: 2rem;
  }

  .action-buttons {
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
  }

  .action-buttons .btn {
    flex: 1 1 auto;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    justify-content: center;
    min-width: fit-content;
    white-space: nowrap;
    text-align: center;
  }

  .action-buttons .btn i {
    margin-right: 0.25rem;
  }

  /* Improved mobile responsiveness for itinerary section */
  .itinerary-header {
    flex-direction: column;
    align-items: stretch;
  }

  .trip-meta {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .form-card {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* Improved carousel for small mobile screens */
  .destination-carousel {
    height: 250px;
  }

  .carousel-slide {
    height: 250px;
  }

  .carousel-image {
    height: 250px;
  }

  .carousel-caption {
    padding: 1rem;
  }

  .carousel-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}

/* Extra small mobile screens */
@media (max-width: 375px) {
  .destination-carousel {
    height: 200px;
  }

  .carousel-slide {
    height: 200px;
  }

  .carousel-image {
    height: 200px;
  }

  .carousel-caption {
    padding: 0.75rem;
  }

  .carousel-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .carousel-caption p {
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .carousel-control {
    width: 30px;
    height: 30px;
  }

  /* Enhanced image handling for extra small screens */
  .carousel-slide img,
  .carousel-image img,
  .activity-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  /* Ensure proper aspect ratio for carousel images */
  .destination-carousel .carousel-slide,
  .destination-carousel .carousel-image {
    aspect-ratio: 16/9;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
}

/* Place Details */
.place-details-container {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(74, 108, 247, 0.05);
  border-left: 3px solid var(--primary-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.place-details-container.hidden {
  display: none;
}

.place-details h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.details-loading, .details-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-style: italic;
}

.details-error {
  color: #dc3545;
}

.know-more-btn {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

.book-now-btn {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

/* Itinerary Editor */
.itinerary-editor-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 1rem;
}

.itinerary-editor-content {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.editor-header h2 {
  margin-bottom: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--text-color);
}

.editor-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.editor-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.edit-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.edit-tab-btn {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.edit-tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.edit-tab-content {
  margin-top: 1.5rem;
}

.edit-tab-pane {
  display: none;
}

.edit-tab-pane.active {
  display: block;
}

.day-editor {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.day-editor h3 {
  margin-bottom: 1rem;
}

.activity-editor-item {
  background-color: var(--background-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

.editor-form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.editor-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.editor-form-group.full-width {
  flex: 0 0 100%;
}

.editor-form-group.text-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.editor-form-group label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.editor-form-group input,
.editor-form-group textarea {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
}

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

.accommodation-editor-item {
  background-color: var(--background-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.tip-editor-item {
  margin-bottom: 1rem;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover {
  background-color: #c82333;
}

@media (max-width: 768px) {
  .editor-form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  


}

@media (max-width: 480px) {
  .activity-item {
    margin-left: 20px;
    padding-right: 8px;
  }
}


/* Customization Feature Styles */
.customization-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 60px;
  z-index: 50;
  border: 1px solid #e5e7eb;
}

.customization-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.custom-toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
  cursor: pointer;
}

.custom-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider-custom {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e5e7eb;
  transition: all 0.3s ease;
  border-radius: 32px;
}

.toggle-slider-custom::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle-text {
  display: none;
}

.custom-toggle-switch input:checked + .toggle-slider-custom {
  background: #3b82f6;
}

.custom-toggle-switch input:checked + .toggle-slider-custom::before {
  transform: translateX(20px);
}


.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

/* Cart Preview Styles */
.cart-preview {
  background: #f9fafb;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.cart-header h3 {
  font-size: 16px;
  color: #1f2937;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-header i {
  color: #3b82f6;
}

.cart-toggle {
  background: none;
  border: none;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s ease;
}

.cart-toggle:hover {
  color: #3b82f6;
}

.cart-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  animation: fadeIn 0.3s ease;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: white;
  border-radius: 6px;
  margin-bottom: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.cart-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.1);
}

.cart-item-info strong {
  display: block;
  color: #1f2937;
  margin-bottom: 2px;
  font-size: 14px;
}

.cart-item-info small {
  color: #6b7280;
  font-size: 12px;
}

.remove-from-cart {
  background: #fee2e2;
  color: #ef4444;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

.remove-from-cart:hover {
  background: #ef4444;
  color: white;
}

.empty-cart {
  text-align: center;
  color: #999;
  padding: 40px 20px;
  font-style: italic;
}

.cart-actions {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: 16px;
}

.cart-actions button {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  flex: 1;
}

/* Add to Cart Button Styles */
.activity-item {
  position: relative;
  transition: all 0.3s ease;
}

.activity-item.in-cart {
    top: 0;
  /* No margin changes - just visual overlay */
}

.activity-item.in-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  animation: fadeIn 0.3s ease;
}

.activity-item.in-cart::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #3b82f6;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  animation: borderPulse 0.5s ease;
}

@keyframes borderPulse {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

.add-to-cart-btn {
  position: absolute;
  top: 25px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 10;
  font-size: 16px;
}

.add-to-cart-btn:hover {
  background: #2563eb;
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.add-to-cart-btn:active {
  transform: scale(0.95);
}

.add-to-cart-btn.in-cart {
  background: #3b82f6;
  animation: checkmarkPulse 0.4s ease;
}

.add-to-cart-btn.in-cart i {
  animation: checkmarkRotate 0.4s ease;
}

@keyframes checkmarkPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes checkmarkRotate {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.activity-item.in-cart {
  background: rgba(59, 130, 246, 0.05);
  border-left: 3px solid #3b82f6;
}

/* Success Message Styles */
.success-message {
  position: fixed;
  top: 16px;
  right: 16px;
  background: #10b981;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
}

.success-message i {
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .customization-container {
    padding: 12px;
    margin-bottom: 16px;
    top: 50px;
  }

  .customization-toggle-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .custom-toggle-switch {
    width: 48px;
    height: 28px;
  }

  .toggle-slider-custom::before {
    height: 20px;
    width: 20px;
  }

  .custom-toggle-switch input:checked + .toggle-slider-custom::before {
    transform: translateX(20px);
  }

  .toggle-label {
    font-size: 13px;
  }

  .add-to-cart-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
    top: 6px;
    right: 6px;
  }

  .cart-preview {
    padding: 12px;
    margin-top: 12px;
  }

  .cart-header h3 {
    font-size: 14px;
  }

  .cart-items {
    max-height: 200px;
  }

  .cart-item {
    padding: 10px;
  }

  .cart-item-info strong {
    font-size: 13px;
  }

  .cart-item-info small {
    font-size: 11px;
  }

  .cart-actions {
    gap: 6px;
  }

  .cart-actions button {
    padding: 6px 12px;
    font-size: 13px;
  }

  .success-message {
    top: 12px;
    right: 12px;
    left: 12px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Autocomplete styles */
.pac-container {
  font-family: var(--font-main);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 5px;
  z-index: 1051 !important;
}

.pac-item {
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pac-item:hover {
  background-color: rgba(74, 108, 247, 0.05);
}

.pac-item-selected {
  background-color: rgba(74, 108, 247, 0.1);
}

.pac-icon {
  margin-right: 10px;
}

.pac-matched {
  font-weight: 700;
  color: var(--primary-color);
}

.action-buttons-inline {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}


@media (max-width: 576px) {
}


/* Verification styles */
.user-profile.unverified .verification-status {
  font-size: 0.8rem;
  color: #e74c3c;
  display: block;
}

.verify-link {
  font-size: 0.8rem;
  color: var(--primary-color);
  text-decoration: underline;
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 500;
}

.verify-link:hover {
  color: var(--primary-dark);
}

.user-profile.unverified .user-info {
  display: flex;
  flex-direction: column;
}

/* Enhanced Loading Placeholder and Image Retry Styles */
.loading-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100px;
  background-color: #f8f9fa;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 10px;
  text-align: center;
}

.loading-placeholder p {
  margin: 8px 0 4px;
  font-weight: 500;
}

.loading-placeholder small {
  font-size: 0.75rem;
  opacity: 0.7;
}

.loading-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(74, 108, 247, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-placeholder i {
  margin-right: 0.5rem;
  animation: spin 1s linear infinite;
}

/* Error placeholder with auto-retry */
.error-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100px;
  background-color: #fff5f5;
  border-radius: var(--radius-sm);
  color: #e53e3e;
  font-size: 0.9rem;
  padding: 15px;
  text-align: center;
  border: 1px dashed #feb2b2;
}

.error-placeholder i {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.error-placeholder p {
  margin: 0 0 10px;
}

.retry-countdown {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* Image retry button */
.image-retry-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
  color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.activity-image:hover .image-retry-btn,
.trip-image:hover .image-retry-btn,
.accommodation-image:hover .image-retry-btn,
.carousel-image:hover .image-retry-btn {
  opacity: 1;
}

.image-retry-btn:hover {
  background-color: white;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* --- Desktop: Fix minus button alignment next to activity category --- */
@media (min-width: 577px) {
  .activity-header {
    position: relative;
    align-items: center;
  }
  
  .activity-details {
    position: relative;
  }
  
}

/* Transport app links */
.transport-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.transport-app-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  background-color: #0066cc;
  color: white;
  border: 1px solid var(--border-color);
}

.transport-app-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background-color: var(--primary-color);
  color: white;
}

.local-transport-info {
  background-color: rgba(74, 108, 247, 0.05);
  border-left: 3px solid var(--primary-color);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.local-transport-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.5;
}

.local-transport-info p:last-child {
  margin-bottom: 0;
}

/* Info Tooltip Styles */
.info-tooltip {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
}

.info-tooltip .fa-info-circle {
  color: var(--primary-color);
  font-size: 0.9rem;
  cursor: help;
}

.info-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  white-space: nowrap;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.info-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.info-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Responsive tooltip */
@media (max-width: 768px) {
  .info-tooltip .tooltip-text {
    bottom: auto;
    top: 125%;
    font-size: 0.8rem;
  }
  
  .info-tooltip .tooltip-text::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent #333 transparent;
  }
}

/* Neighboring Places Section */
.neighboring-places-section {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid var(--border-color);
}

.neighboring-places-section .section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.neighboring-places-section .section-title i {
  color: var(--primary-color);
}

.neighboring-places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.neighboring-place-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.neighboring-place-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.neighboring-place-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f5f5f5;
  position: relative;
}

.neighboring-place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.neighboring-place-image .loading-placeholder,
.neighboring-place-image .error-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #f8f9fa;
  color: #666;
}

.neighboring-place-image .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e0e0e0;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

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

.place-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.place-content {
  padding: 1.5rem;
}

.place-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
}

.place-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  min-height: 3rem;
  flex: 1;
}

.place-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Responsive styles for neighboring places */
@media (max-width: 768px) {
  .neighboring-places-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .neighboring-place-card {
    max-width: 100%;
  }
  
  .neighboring-place-image {
    height: 180px;
  }
  
  .neighboring-places-section .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .neighboring-place-image {
    height: 150px;
  }
  
  .place-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .place-actions .btn {
    width: 100%;
    justify-content: center;
  }
}