:root {
  --arctic-50: #f0f9ff;
  --arctic-100: #e0f2fe;
  --arctic-200: #bae6fd;
  --arctic-300: #7dd3fc;
  --arctic-400: #38bdf8;
  --arctic-500: #0ea5e9;
  --arctic-600: #0284c7;
  --arctic-700: #0369a1;
  --arctic-800: #075985;
  --arctic-900: #0c4a6e;

  --coral-50: #fff1f2;
  --coral-100: #ffe4e6;
  --coral-200: #fecdd3;
  --coral-300: #fda4af;
  --coral-400: #fb7185;
  --coral-500: #f43f5e;
  --coral-600: #e11d48;
  --coral-700: #be123c;
  --coral-800: #9f1239;
  --coral-900: #881337;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --color-primary: var(--arctic-700);
  --color-primary-hover: var(--arctic-800);
  --color-accent: var(--coral-500);
  --color-accent-hover: var(--coral-600);
  --color-text: var(--slate-900);
  --color-text-muted: var(--slate-600);
  --color-bg: #ffffff;
  --color-bg-alt: var(--arctic-50);
  --color-border: var(--slate-200);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

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

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-title {
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
}

.section-intro {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
}

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

.bg-alt {
  background: var(--color-bg-alt);
}

.cta-center {
  text-align: center;
  margin-top: var(--space-2xl);
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to right, var(--arctic-500), var(--arctic-700));
  z-index: 1000;
  transition: width 150ms ease-out;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-lg);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: var(--transition-base);
}

.header.scrolled .logo {
  color: var(--arctic-800);
}

.logo span {
  color: var(--coral-500);
}

.nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-base);
  font-size: var(--text-base);
}

.header.scrolled .nav a {
  color: var(--color-text);
}

.nav a:hover {
  color: var(--coral-500);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition-base);
}

.header.scrolled .mobile-menu-toggle span {
  background: var(--color-text);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  flex-direction: column;
  padding: var(--space-lg);
  gap: var(--space-sm);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.mobile-nav a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: var(--text-base);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-600), var(--coral-700));
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  padding: var(--space-2xl) var(--space-lg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

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

.hero-content {
  max-width: 900px;
  margin-top: 80px;
}

.hero-badges {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.badge-solid {
  background: var(--coral-500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}

.badge-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

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

.stars {
  color: var(--coral-400);
  font-size: var(--text-lg);
}

.rating-value {
  font-weight: 700;
  font-size: var(--text-xl);
}

.rating-count {
  opacity: 0.9;
  font-size: var(--text-base);
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-from {
  opacity: 0.8;
  font-size: var(--text-sm);
}

.price-amount {
  font-size: var(--text-4xl);
  font-weight: 700;
}

.price-unit {
  opacity: 0.8;
  font-size: var(--text-base);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
}

.trust-badge svg {
  color: var(--arctic-300);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.highlight-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.highlight-card:hover {
  border-color: var(--arctic-300);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--arctic-50), var(--arctic-100));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--arctic-700);
}

.highlight-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.highlight-card p {
  color: var(--color-text-muted);
  margin: 0;
}

.itinerary-timeline {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.itinerary-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.itinerary-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: calc(100% + var(--space-xl));
  background: var(--arctic-200);
}

.itinerary-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--arctic-600), var(--arctic-700));
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-xl);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.itinerary-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.itinerary-content p {
  color: var(--color-text-muted);
  margin: 0;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--coral-400);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}

.testimonial-quote {
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.testimonial-author {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.includes-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.includes-title svg {
  color: var(--arctic-600);
}

.includes-list {
  list-style: none;
  padding: 0;
}

.includes-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-text-muted);
}

.includes-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--arctic-600);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.aggregate-rating {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.aggregate-stars {
  color: var(--coral-400);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.aggregate-score {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.aggregate-count {
  color: var(--color-text-muted);
}

.reviews-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--arctic-400) var(--slate-100);
  padding-bottom: var(--space-md);
}

.review-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  min-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--coral-400);
  margin-bottom: var(--space-sm);
}

.review-text {
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.review-author {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) 0;
  font-weight: 600;
  font-size: var(--text-lg);
  font-family: 'Playfair Display', serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding-bottom: var(--space-lg);
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.booking-widget {
  max-width: 800px;
  margin: 0 auto;
}

.footer {
  background: var(--slate-900);
  color: white;
  padding: var(--space-2xl) 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.footer-links a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--coral-400);
}

.footer-copyright {
  text-align: center;
  color: var(--slate-400);
  font-size: var(--text-sm);
  margin: 0;
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
  z-index: 90;
  padding: var(--space-md) var(--space-lg);
}

.mobile-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.mobile-cta-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.mobile-price-from {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.mobile-price-amount {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
}

@media (max-width: 1024px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-cta {
    display: none;
  }

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

  .hero-content {
    margin-top: 100px;
  }

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

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

  .mobile-cta-bar {
    display: block;
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .trust-badges {
    justify-content: center;
  }
}
