/* ===================================
   TRAILVEDA - Design System & Styles
   =================================== */

/* Modern Fonts - System Stack for SF Pro */
/* SF Pro is usually available on Apple devices. Fallbacks are provided for other systems. */

/* CSS Variables - Sage Green Theme */
:root {
  /* Sage Green Color Palette */
  --color-primary: #8FAF9B;
  --color-primary-light: #A8C4B5;
  --color-primary-dark: #6D8C7A;
  --color-secondary: #5A7A65;
  --color-secondary-light: #7A9A85;
  --color-accent: #14B8A6;
  --color-accent-light: #06B6D4;

  /* Neutrals */
  --color-dark: #0F172A;
  --color-dark-light: #1E293B;
  --color-text: #334155;
  --color-text-light: #64748B;
  --color-bg: #FFFFFF;
  --color-bg-light: #F8FAFC;
  --color-bg-warm: #F0F4F1;
  --color-border: #E2E8F0;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8FAF9B 0%, #6D8C7A 100%);
  --gradient-secondary: linear-gradient(135deg, #14B8A6 0%, #06B6D4 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

  /* Typography */
  --font-primary: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "SFMono-Regular", ui-monospace, "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(245, 158, 11, 0.1);
  --shadow-md: 0 4px 16px rgba(245, 158, 11, 0.15);
  --shadow-lg: 0 8px 32px rgba(245, 158, 11, 0.2);
  --shadow-xl: 0 16px 48px rgba(245, 158, 11, 0.25);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

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

/* Performance optimizations */
.hero-slide img,
.destination-card img,
.trip-image img {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

/* Header & Navigation - Two-Tier Design */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Bar - Sage Green */
.header-top {
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 0;
}

.header-top .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-image {
  height: 35px;
  width: auto;
  display: block;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact span {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-primary);
  color: white;
}

/* Navigation Bar - White */
.header-nav {
  background: white;
  border-bottom: 1px solid var(--color-border);
}

.header-nav .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text);
  padding: 0.6rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 650px;
  /* Desktop height */
  overflow: hidden;
  margin-top: 80px;
  contain: layout style paint;
  zoom: 1;
}

/* Mobile - Reduced hero height */
@media (max-width: 768px) {
  .hero {
    height: fit-content
      /* Shorter on mobile */
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  will-change: opacity;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  padding: var(--spacing-lg) var(--spacing-md);
  color: white;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: var(--spacing-sm);
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 650px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 400;
  line-height: 1.6;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  width: 80px;
  height: 80px;
  cursor: pointer;
  font-size: 4rem;
  font-weight: 200;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0.4;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 15;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slider-dots .dot.active {
  background: white;
  border-color: var(--color-primary);
  transform: scale(1.3);
}

/* Page Header for Destination Pages */
.page-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  margin-top: 70px;
  text-align: center;
}

.page-header-content h1 {
  margin-bottom: var(--spacing-sm);
  color: white;
}

.page-header-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.1rem;
}

/* Welcome Section */
.welcome {
  background-color: var(--color-bg-light);
  text-align: center;
}

.welcome-content {
  max-width: 900px;
  margin: 0 auto;
}

.welcome p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.destination-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.destination-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: var(--spacing-md);
  color: white;
}

.destination-overlay h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.destination-overlay p {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.5;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Trips Section */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.trip-card {
  background: white;
  border-radius: 12px;
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.trip-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  text-decoration: none;
  border-color: var(--color-primary-light);
}

.trip-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.trip-card:hover .trip-image img {
  transform: scale(1.08);
}

.trip-content {
  padding: 0.9rem 1rem 0.1rem 1rem;
  display: flex;
  flex-direction: column;
  height: 50%;
}

.trip-title {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25;
}

.trip-location {
  color: var(--color-text-light);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.1;
}

.trip-content>p {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text);
}

.trip-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  padding-bottom: 0.05rem;
  border-top: 2px solid var(--color-bg-light);
}

.trip-duration {
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.trip-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

/* Testimonials */
.testimonials {
  background-color: var(--color-bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

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

.testimonial-trip {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

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

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
  color: var(--color-primary-light);
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--color-primary-light);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--spacing-sm);
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 8px;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary-light);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  padding: 0.85rem 1.8rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: var(--spacing-sm);
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 999;
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--color-bg-dark);
    width: 100%;
    padding: var(--spacing-md);
    transition: left var(--transition-normal);
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .nav-contact {
    display: none;
  }

  .hero {
    height: 70vh;
  }

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

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

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

  .slider-controls {
    padding: 0 1rem;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: var(--spacing-sm);
}

.mt-2 {
  margin-top: var(--spacing-md);
}

.mt-3 {
  margin-top: var(--spacing-lg);
}

.mb-1 {
  margin-bottom: var(--spacing-sm);
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mb-3 {
  margin-bottom: var(--spacing-lg);
}

/* ===================================
   Trek Page Specific Styles
   =================================== */

.trek-quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.fact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform var(--transition-fast);
}

.fact-card:hover {
  transform: translateY(-5px);
}

.fact-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.fact-card .label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.fact-card .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.itinerary-day {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--color-primary);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.day-number {
  background: var(--color-primary);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

.day-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  flex: 1;
}

.altitude-tag {
  background: #f1f5f9;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #64748b;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-item {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.highlight-item h4 {
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.packing-category h4 {
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: 0.5rem;
}

.packing-category ul {
  list-style: none;
  padding-left: 0;
}

.packing-category li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.packing-category li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.booking-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  margin: 4rem 0;
}

.booking-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.booking-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--color-primary-dark);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Color Themes
   =================================== */

/* Blue Theme (Himachal/Uttarakhand Style) */
.theme-blue {
  --color-primary: #526D82;
  --color-primary-light: #9DB2BF;
  --color-primary-dark: #27374D;
  --color-secondary: #DDE6ED;
  --gradient-primary: linear-gradient(135deg, #526D82 0%, #27374D 100%);
}

.theme-blue .day-number,
.theme-blue .booking-cta {
  background: var(--gradient-primary);
}

.theme-blue .highlight-item {
  border-left-color: var(--color-primary);
}

.theme-blue .packing-category h4 {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-primary);
}

.theme-blue .packing-category li:before {
  color: var(--color-primary);
}

.theme-blue .fact-card .value {
  color: var(--color-primary-dark);
}

.theme-blue .day-title {
  color: var(--color-primary-dark);
}

.theme-blue .section-title {
  color: var(--color-primary-dark);
}