/* ===============================
   TRIP DETAIL PAGE STYLES
   
   Styles for vandreophold/:id pages
   Following NaturRo design system and wireframe layout
================================ */

/* ===============================
   HIKE CAROUSEL HERO SECTION
================================ */

.hike-carousel-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 70px; /* Padding for navbar */
}

.hike-carousel-hero .swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}

.hike-carousel-hero .swiper-slide {
  width: 100%;
  height: 100%;
}

.hike-carousel-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom gradient overlay for better text readability on icons - matches index.html bottom-gradient */
.hike-carousel-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.5) 25%, 
    rgba(0, 0, 0, 0.3) 40%, 
    rgba(0, 0, 0, 0.1) 55%, 
    transparent 65%
  );
  z-index: 1;
  pointer-events: none;
}

/* Trip header overlay content */
.trip-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 4rem 4vw 6rem;
  text-align: center;
  color: var(--color-white);
  pointer-events: none;
}

.trip-header-overlay > * {
  pointer-events: auto;
}

.trip-header-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

.trip-header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.trip-header-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
}

.trip-header-icon-label {
  font-size: 0.9rem;
  text-align: center;
}

/* Swiper navigation and pagination styling - z-index override only (placement handled by CDN) */
.hike-carousel-hero .swiper-pagination,
.hike-carousel-hero .swiper-pagination-clickable,
.hike-carousel-hero .swiper-pagination-bullets,
.hike-carousel-hero .swiper-pagination-horizontal {
  z-index: 3 !important;
}

.hike-carousel-hero .swiper-pagination-bullet {
  background: var(--color-white) !important;
  opacity: 0.5 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
}

.hike-carousel-hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-white);
}

.hike-carousel-hero .swiper-button-prev,
.hike-carousel-hero .swiper-button-next {
  color: var(--color-white);
  z-index: 3 !important;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hike-carousel-hero .swiper-button-prev:hover,
.hike-carousel-hero .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hike-carousel-hero .swiper-button-prev::after,
.hike-carousel-hero .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hike-carousel-hero {
    min-height: 70vh;
  }
  
  .hike-carousel-hero .swiper-pagination,
  .hike-carousel-hero .swiper-pagination-clickable,
  .hike-carousel-hero .swiper-pagination-bullets,
  .hike-carousel-hero .swiper-pagination-horizontal {
    z-index: 99999 !important;
  }

  
  .trip-header-icons {
    gap: 2rem;
  }
  
  .trip-header-overlay {
    padding: 2rem 4vw 4rem;
  }
  
  .trip-header-box {
    padding: 2rem 1.5rem;
  }
}

/* ===============================
   DATE SELECTION COMPONENT
   Redesigned: Smaller, outlined, compact
================================ */

.date-selection-section {
  padding: 4rem 4vw;
  background: var(--color-white);
}

.date-selection-container {
  max-width: 1200px;
  margin: 0 auto;
}

.date-selection-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: currentColor;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

/* Wrapper for horizontal scroll on mobile */
.date-list-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem; /* Space for scrollbar */
}

.date-list-wrapper::-webkit-scrollbar {
  height: 6px;
}

.date-list-wrapper::-webkit-scrollbar-track {
  background: var(--color-nature-border);
  border-radius: 3px;
}

.date-list-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-green);
  border-radius: 3px;
}

.date-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  min-width: max-content; /* Allow horizontal scroll on mobile */
}

/* Desktop: normal grid */
@media (min-width: 769px) {
  .date-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    min-width: auto;
  }
}

/* Mobile: horizontal scroll */
@media (max-width: 768px) {
  .date-list {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding-right: 1rem;
  }
  
  .date-item {
    flex: 0 0 200px; /* Fixed width for horizontal scroll */
    min-width: 200px;
  }
}

.date-item {
  padding: 1rem 1.25rem;
  background: transparent;
  border: 2px solid var(--color-nature-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 120px;
  justify-content: center;
}

.date-item:hover {
  border-color: var(--color-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 64, 14, 0.1);
}

.date-item.selected {
  border-color: var(--color-green);
  border-width: 3px;
  background: rgba(0, 64, 14, 0.03);
  box-shadow: 0 4px 16px rgba(0, 64, 14, 0.15);
}

.date-item.selected::after {
  content: '✓';
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 24px;
  height: 24px;
  background: var(--color-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}

.date-item {
  position: relative;
}

.date-item-date {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-nature-text-primary);
  line-height: 1.3;
}

.date-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1.2;
}

.date-item-currency {
  font-size: 0.75rem;
  color: var(--color-nature-text-secondary);
  font-weight: 400;
}

.date-item-availability {
  font-size: 0.75rem;
  color: var(--color-nature-text-secondary);
  margin-top: 0.25rem;
  font-weight: 500;
}

.date-item-availability.limited {
  color: var(--color-coral);
  font-weight: 600;
}

.date-item-cta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-item.selected .date-item-cta {
  color: var(--color-green);
}

.selected-date-info {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: var(--color-nature-card-bg);
  border: 2px solid var(--color-green);
  border-radius: 16px;
  text-align: center;
  display: none; /* Hidden by default, shown when date is selected */
}

.selected-date-info.has-selection {
  display: block;
}

.selected-date-summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.selected-date-label {
  font-size: 0.9rem;
  color: var(--color-nature-text-secondary);
  font-weight: 500;
}

.selected-date {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-nature-text-primary);
}

.selected-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-green);
}

.booking-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-green);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 64, 14, 0.2);
}

.booking-button:hover {
  background: var(--color-moss-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 64, 14, 0.3);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--color-green);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 1rem;
  display: none; /* Hidden by default, shown on mobile when date selected */
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
  display: block;
  transform: translateY(0);
}

.mobile-sticky-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-sticky-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-sticky-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-nature-text-primary);
}

.mobile-sticky-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-green);
}

.mobile-sticky-button {
  padding: 0.875rem 1.5rem;
  background: var(--color-green);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 64, 14, 0.2);
  transition: all 0.3s ease;
}

.mobile-sticky-button:hover {
  background: var(--color-moss-accent);
  transform: translateY(-2px);
}

@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* ===============================
   FLOATING BOOKING WIDGET
   Unified shell (trigger + panel)
================================ */

:root {
  --floating-radius: 26px;
  --floating-radius-inner: 16px;
}

.floating-booking-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: min(360px, calc(100vw - 2rem));
  z-index: 1000;
  color: white;
  font-family: inherit;
}

/* Trigger */
.floating-booking-trigger {
  width: 100%;
  background: var(--color-green);
  color: white;
  border: none;
  border-radius: var(--floating-radius);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: border-radius 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-booking-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.floating-booking-widget.open .floating-booking-trigger {
  border-radius: var(--floating-radius) var(--floating-radius) 0 0;
}

.floating-booking-widget.theme-yellow .floating-booking-trigger {
  background: var(--color-yellow);
  color: var(--color-green);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.floating-booking-widget.theme-yellow .floating-booking-trigger:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.floating-booking-widget.theme-yellow .floating-booking-arrow {
  color: inherit;
}

.floating-booking-arrow {
  transition: transform 0.3s ease;
}

.floating-booking-widget.open .floating-booking-arrow {
  transform: rotate(180deg);
}

/* Panel */
.floating-booking-overlay {
  background: var(--color-green);
  color: white;
  border-radius: 0 0 var(--floating-radius) var(--floating-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  max-height: 0;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
}

.floating-booking-widget.open .floating-booking-overlay {
  max-height: clamp(360px, 70vh, 520px);
}

/* Internal structure */
.floating-booking-header {
  padding: 1.25rem 1.25rem 0.75rem;
  font-weight: 600;
}

.floating-booking-dates {
  list-style: none;
  padding: 1rem;
  margin: 0;
  max-height: clamp(220px, 45vh, 260px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-booking-dates::-webkit-scrollbar {
  width: 6px;
}

.floating-booking-dates::-webkit-scrollbar-track {
  background: transparent;
}

.floating-booking-dates::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
}

.floating-booking-dates {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}

.floating-booking-dates li {
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--floating-radius-inner);
  padding: 0.9rem 1rem;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.floating-booking-dates li:hover {
  background: rgba(255, 255, 255, 0.18);
}

.floating-booking-dates li.selected {
  background: rgba(255, 255, 255, 0.28);
}

/* Footer */
.floating-booking-footer {
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.floating-booking-summary {
  font-size: 0.9rem;
  line-height: 1.3;
  opacity: 0.95;
}

.floating-booking-cta {
  background: white;
  color: var(--color-green);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-booking-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.floating-booking-cta.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

/* Theme swap (keep dynamic color logic) */
.floating-booking-overlay.theme-yellow {
  background: var(--color-yellow);
  color: var(--color-green);
}

.floating-booking-overlay.theme-yellow .floating-booking-dates li {
  background: rgba(0, 0, 0, 0.06);
}

.floating-booking-overlay.theme-yellow .floating-booking-dates li:hover {
  background: rgba(0, 0, 0, 0.12);
}

.floating-booking-overlay.theme-yellow .floating-booking-dates li.selected {
  background: rgba(0, 0, 0, 0.18);
}

.floating-booking-overlay.theme-yellow .floating-booking-footer {
  background: rgba(0, 0, 0, 0.06);
}

.floating-booking-overlay.theme-yellow .floating-booking-cta {
  background: var(--color-green);
  color: white;
}

/* Mobile */
@media (max-width: 768px) {
  .floating-booking-widget {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    left: max(1rem, env(safe-area-inset-left, 0px));
    width: calc(100vw - max(1rem, env(safe-area-inset-left, 0px)) - max(1rem, env(safe-area-inset-right, 0px)));
    max-width: none;
    max-height: calc(100vh - max(1rem, env(safe-area-inset-bottom, 0px)) - max(1rem, env(safe-area-inset-top, 0px)));
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
  }
  
  .floating-booking-trigger {
    border-radius: var(--floating-radius) !important;
  }
  
  .floating-booking-widget.open .floating-booking-trigger {
    border-radius: 0 0 var(--floating-radius) var(--floating-radius) !important;
  }
  
  .floating-booking-overlay {
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--floating-radius) var(--floating-radius) 0 0 !important;
    order: -1;
    transition: max-height 0.35s ease, border-radius 0.3s ease;
    margin-bottom: 0;
  }
  
  .floating-booking-widget.open .floating-booking-overlay {
    max-height: min(60vh, calc(100vh - max(1rem, env(safe-area-inset-bottom, 0px)) - max(1rem, env(safe-area-inset-top, 0px)) - 80px));
    margin-bottom: -1px;
    border-radius: var(--floating-radius) var(--floating-radius) 0 0 !important;
  }
  
  .floating-booking-dates {
    max-height: min(40vh, calc(100vh - max(1rem, env(safe-area-inset-bottom, 0px)) - max(1rem, env(safe-area-inset-top, 0px)) - 200px));
  }
}

/* ===============================
   TRIP DESCRIPTION SECTION
================================ */

.trip-description-section {
  padding: 4rem 4vw;
}

.trip-description-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.trip-description-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: currentColor;
  margin-bottom: 1.5rem;
}

.trip-description-content p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: currentColor;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.trip-map-container {
  position: relative;
  background: var(--color-nature-card-bg);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-map-svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
}

.trip-map-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.85rem;
  color: currentColor;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* ===============================
   INCLUDED ITEMS SECTIONS
================================ */

.included-section {
  padding: 4rem 4vw;
}

.included-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.included-container.reverse {
  direction: rtl;
}

.included-container.reverse > * {
  direction: ltr;
}

.included-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: currentColor;
  margin-bottom: 1.5rem;
}

.included-content p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: currentColor;
  opacity: 0.95;
}

.included-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ===============================
   TRIP INTRO SECTION
================================ */

.trip-intro-section {
  padding: 4rem 4vw;
}

.trip-intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.trip-intro-container h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: currentColor;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.trip-intro-content {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: currentColor;
  opacity: 0.95;
  text-align: center;
}

.trip-intro-content p {
  margin-bottom: 1.5rem;
}

.trip-intro-highlights {
  margin-top: 2rem;
}

.trip-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trip-highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: currentColor;
  font-weight: 500;
}

.trip-highlights-list li i {
  color: var(--color-green);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .trip-highlights-list {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .trip-intro-content {
    text-align: left;
  }
}

/* ===============================
   TRIP PROGRAM SECTION
================================ */

.trip-program-section {
  padding: 4rem 4vw;
}

.trip-program-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trip-program-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: currentColor;
  margin-bottom: 3rem;
  text-align: center;
}

.trip-program-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trip-program-day {
  background: var(--color-nature-card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.trip-program-day h3 {
  font-size: 1.5rem;
  color: currentColor;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.trip-program-day h4 {
  font-size: 1.2rem;
  color: currentColor;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.trip-program-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trip-program-items li {
  padding: 0.75rem 0;
  color: currentColor;
  opacity: 0.95;
  line-height: 1.7;
  border-bottom: 1px solid rgba(0, 64, 14, 0.2);
  padding-left: 1.5rem;
  position: relative;
}

.trip-program-items li:last-child {
  border-bottom: none;
}

.trip-program-items li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-nature-accent);
  font-weight: bold;
}

@media (max-width: 900px) {
  .trip-program-days {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   MAP SELECTOR COMPONENT
================================ */

.map-selector-section {
  padding: 4rem 4vw;
}

.map-selector-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-selector-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: currentColor;
  margin-bottom: 2rem;
  text-align: center;
}

.map-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  color: var(--color-nature-text-primary);
}

.map-selector-card {
  background: var(--color-nature-card-bg);
  border: 1px solid var(--color-nature-border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: currentColor;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.map-selector-card:hover {
  border-color: var(--color-nature-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  text-decoration: none;
  color: currentColor;
}

.map-selector-icon {
  width: 48px;
  height: 48px;
  color: var(--color-nature-accent);
  opacity: 0.75;
}

.map-selector-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.map-selector-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: currentColor;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 900px) {
  .trip-header {
    padding: 3rem 2rem;
  }

  .trip-header-box {
    padding: 2rem 1.5rem;
  }

  .trip-header-icons {
    gap: 2rem;
  }

  .trip-description-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .included-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .included-container.reverse {
    direction: ltr;
  }

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

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

@media (max-width: 500px) {
  .trip-header {
    padding: 2rem 1.5rem;
  }

  .trip-header-icons {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trip-description-section,
  .included-section,
  .map-selector-section {
    padding: 3rem 1.5rem;
  }

  .included-image {
    height: 200px;
  }
}

