/* ============================================
   Internship Abroad — Deutschland / Germany
   Premium Design System
   Best patterns from UK, CZ, and ES sites
   ============================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

*:focus-visible {
  outline: 3px solid var(--color-primary, #5b5fc7);
  outline-offset: 2px;
}

:root {
  /* Brand */
  --color-primary: #5b5fc7;
  --color-primary-light: #ededfa;
  --color-primary-dark: #4a4eb3;
  --color-green: #0d9668;
  --color-green-light: #e6f7f1;
  --color-red: #d94452;
  --color-red-light: #fde8ea;
  --color-amber: #e8a530;
  --color-amber-light: #fef6e0;
  --color-blue: #3b82f6;
  --color-blue-light: #eff6ff;

  /* Warm neutrals */
  --color-bg: #f8f5f0;
  --color-bg-alt: #f3efe9;
  --color-white: #ffffff;
  --color-text: #1a1a2e;
  --color-text-secondary: #5a5a72;
  --color-text-light: #8b8b9e;
  --color-border: #e8e4de;
  --color-border-light: #f0ece6;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-float: 0 8px 32px rgba(0,0,0,0.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }

/* Typography */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; color: var(--color-text); }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
}

h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* Layout */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--color-white); }
.section--cream { background: var(--color-bg); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* Badge pill with dot */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

.badge--green::before { background: var(--color-green); }
.badge--purple::before { background: var(--color-primary); }
.badge--amber::before { background: var(--color-amber); }

/* Tags */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid;
}

.tag--green { color: var(--color-green); background: var(--color-green-light); border-color: rgba(13,150,104,0.2); }
.tag--red { color: var(--color-red); background: var(--color-red-light); border-color: rgba(217,68,82,0.2); }
.tag--purple { color: var(--color-primary); background: var(--color-primary-light); border-color: rgba(91,95,199,0.2); }
.tag--amber { color: #9a6d00; background: var(--color-amber-light); border-color: rgba(232,165,48,0.2); }
.tag--blue { color: var(--color-blue); background: var(--color-blue-light); border-color: rgba(59,130,246,0.2); }

/* ============================================
   Header - Floating Pill Navigation
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 24px;
}

.header-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-full);
  padding: 0 8px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition);
}

.site-header.scrolled .header-bar {
  box-shadow: var(--shadow-md);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: auto;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
}

.logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}

.nav-links a:hover {
  color: var(--color-text);
  background: var(--color-bg);
}

.nav-links a.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
  font-weight: 600;
}

/* Dropdown menu */
.nav-has-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.5;
  transition: transform 0.3s ease;
}
.nav-has-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border-light);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown__item {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 12px 14px !important;
  border-radius: var(--radius-md) !important;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
}
.nav-dropdown__item:hover {
  background: var(--color-bg) !important;
}
.nav-dropdown__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.nav-dropdown__item:hover .nav-dropdown__icon {
  background: var(--color-primary-light);
  transform: scale(1.05);
}
.nav-dropdown__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
.nav-dropdown__desc {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.3;
  margin-top: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px !important;
  background: var(--color-primary) !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  border-radius: var(--radius-full) !important;
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition) !important;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(91,95,199,0.3);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
  border-radius: 2px;
}

@media (max-width: 868px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    pointer-events: none;
    overflow-y: auto;
    z-index: 998;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 4px;
    width: 100%;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-light);
    border-radius: 0;
    background: none;
    letter-spacing: -0.01em;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--color-primary);
    background: none;
  }

  .nav-has-dropdown { width: 100%; }
  .nav-dropdown-trigger::after { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 8px;
    opacity: 1;
    visibility: visible;
    background: transparent;
  }
  .nav-dropdown-trigger {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    font-family: var(--font-display) !important;
  }
  .nav-dropdown__item {
    padding: 10px 8px !important;
    border-radius: var(--radius-sm) !important;
  }
  .nav-dropdown__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
  }
  .nav-dropdown__label { font-size: 0.95rem; }
  .nav-dropdown__desc { display: none; }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 24px;
    text-align: center;
    justify-content: center;
    width: 100%;
    font-size: 1.05rem !important;
    padding: 16px 32px !important;
    font-family: var(--font-sans) !important;
    border-radius: var(--radius-lg) !important;
    border-bottom: none !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .site-header { z-index: 1001; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(91,95,199,0.3);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.btn-green:hover {
  background: #0a7a54;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13,150,104,0.3);
}

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

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

.btn-lg { padding: 16px 40px; font-size: 1rem; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
}

.hero-content { max-width: 520px; }

.hero-content h1 {
  margin-bottom: 24px;
  position: relative;
}

.hero-content h1::after {
  content: '';
  display: block;
  width: 200px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-top: 12px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 380px;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating opportunity cards */
.float-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-float);
  z-index: 2;
  min-width: 180px;
  transition: transform 0.6s ease;
  animation: float 6s ease-in-out infinite;
}

.float-card:hover { transform: translateY(-4px); }

.float-card:nth-child(odd) { animation-delay: -3s; }
.float-card:nth-child(3n) { animation-delay: -1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card .fc-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.float-card .fc-location .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot--green { background: var(--color-green); }
.dot--red { background: var(--color-red); }
.dot--purple { background: var(--color-primary); }
.dot--amber { background: var(--color-amber); }

.float-card .fc-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.float-card .fc-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.float-card--1 { top: 5%; left: -5%; animation-delay: 0s; }
.float-card--2 { top: 25%; right: -10%; animation-delay: -2s; }
.float-card--3 { top: 50%; left: -15%; animation-delay: -4s; }
.float-card--4 { bottom: 20%; left: 5%; animation-delay: -1s; }
.float-card--5 { bottom: 5%; right: -5%; animation-delay: -3.5s; }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin-top: 4px;
}

@media (max-width: 868px) {
  .hero { padding: 100px 0 40px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  .hero-visual {
    min-height: 360px;
    order: -1;
  }
  .hero-photo {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: 100%;
    max-width: 320px;
    height: 400px;
    margin: 0 auto;
  }
  .float-card { display: none; }
  .hero-stats { gap: 32px; margin-top: 32px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: row; gap: 24px; }
  .hero-stat .number { font-size: 1.8rem; }
}

/* ============================================
   Cards
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border-light);
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.card-icon--green { background: var(--color-green-light); }
.card-icon--purple { background: var(--color-primary-light); }
.card-icon--amber { background: var(--color-amber-light); }
.card-icon--red { background: var(--color-red-light); }
.card-icon--blue { background: var(--color-blue-light); }

.card h3 { margin-bottom: 6px; }
.card p { color: var(--color-text-secondary); font-size: 0.93rem; margin-bottom: 0; }

/* Destination cards */
.destination-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.destination-card .card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.destination-card .card-body { padding: 20px 24px; }
.destination-card .card-body h3 { margin-bottom: 4px; }
.destination-card .card-body p { font-size: 0.9rem; color: var(--color-text-secondary); }

.destination-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.destination-tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-green-light);
  color: var(--color-green);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Field cards with background images */
.card--field {
  position: relative;
  overflow: hidden;
}

.card--field::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  opacity: 0.08;
  transition: opacity 0.4s ease;
}

.card--field:hover::after { opacity: 0.15; }

.field-marketing::after { background-image: url('/images/field-marketing.jpg'); }
.field-sustainability::after { background-image: url('/images/field-sustainability.jpg'); }
.field-hospitality::after { background-image: url('/images/field-hospitality.jpg'); }
.field-creative::after { background-image: url('/images/field-creative.jpg'); }
.field-ngo::after { background-image: url('/images/field-ngo.jpg'); }
.field-tech::after { background-image: url('/images/field-tech.jpg'); }

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-border-light);
  position: relative;
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(91,95,199,0.12), 0 8px 24px rgba(0,0,0,0.06);
}

.pricing-card .card-header {
  padding: 28px 32px 20px;
  position: relative;
}

.pricing-card .card-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.pricing-card .card-header h3 {
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.pricing-card .card-header .card-subtitle {
  font-size: 0.88rem;
  font-weight: 500;
  margin: 0;
}

.pricing-card--free .card-header {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}
.pricing-card--free .card-header-icon { background: #0d9668; color: white; }
.pricing-card--free .card-header .card-subtitle { color: #047857; }
.pricing-card--free { border-color: #d1fae5; }
.pricing-card--free:hover { border-color: #0d9668; }

.pricing-card--profile .card-header {
  background: linear-gradient(135deg, #ededfa 0%, #e0e0f7 100%);
}
.pricing-card--profile .card-header-icon { background: #5b5fc7; color: white; }
.pricing-card--profile .card-header .card-subtitle { color: #4a4eb3; }
.pricing-card--profile { border-color: #e0e0f7; }
.pricing-card--profile:hover { border-color: #5b5fc7; }

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(91,95,199,0.15);
  overflow: visible;
}
.pricing-card.featured .card-header {
  background: linear-gradient(135deg, #5b5fc7 0%, #7c5cbf 50%, #c9467a 100%);
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.pricing-card.featured .card-header h3 { color: white; }
.pricing-card.featured .card-header .card-subtitle { color: rgba(255,255,255,0.85); }
.pricing-card.featured .card-header-icon {
  background: rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(8px);
}

.pricing-card.featured::before {
  content: 'Populairst';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9467a, #5b5fc7);
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.02em;
}

.pricing-card .card-content {
  padding: 24px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0 0 4px;
  line-height: 1.1;
}

.pricing-card .price-note {
  font-size: 0.83rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.pricing-card ul { list-style: none; margin-bottom: 28px; flex: 1; }

.pricing-card ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
}

.pricing-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.85rem;
  top: 9px;
}

.pricing-card--free ul li::before { color: #0d9668; }
.pricing-card--profile ul li::before { color: #5b5fc7; }
.pricing-card.featured ul li::before { color: #0d9668; }

.pricing-card .guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #ecfdf5;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: #047857;
  margin-bottom: 20px;
}

.pricing-card .guarantee svg { flex-shrink: 0; }

.pricing-card .platform-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 10px;
}

.pricing-card .btn { width: 100%; text-align: center; }

/* ============================================
   Steps / Process
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.step { text-align: center; }

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}

.step h4 { margin-bottom: 6px; }
.step p { font-size: 0.88rem; color: var(--color-text-secondary); }

/* ============================================
   Testimonials
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border-light);
}

.testimonial-card .quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}

.testimonial-card .quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 4px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.testimonial-info .name { font-weight: 600; font-size: 0.9rem; }
.testimonial-info .detail { font-size: 0.8rem; color: var(--color-text-secondary); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border-light); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: color var(--transition);
}

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

.faq-question .icon {
  font-size: 1.3rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--color-primary);
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p { color: var(--color-text-secondary); font-size: 0.93rem; line-height: 1.7; }

/* Details/summary FAQ variant (destination pages) */
details.faq-item { border-bottom: 1px solid var(--color-border-light); }
details.faq-item summary {
  padding: 20px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: color var(--transition);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; content: ''; }
details.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--color-primary); flex-shrink: 0; margin-left: 16px; transition: transform var(--transition); }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item summary:hover { color: var(--color-primary); }
details.faq-item p { color: var(--color-text-secondary); font-size: 0.93rem; line-height: 1.7; padding-bottom: 20px; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--color-text);
  padding: 80px 0;
  text-align: center;
  color: white;
  border-radius: var(--radius-xl);
  margin: 0 24px 80px;
}

.cta-section h2 { color: white; margin-bottom: 16px; }

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-top: 12px; }

.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}

.footer-social a:hover { background: var(--color-primary); color: white; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

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

/* ============================================
   Page Headers (inner pages)
   ============================================ */
.page-header {
  padding: 130px 0 50px;
  text-align: center;
}

.page-header h1 { margin-bottom: 14px; }
.page-header h1::after { display: none; }

.page-header p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.83rem;
}

.breadcrumbs a { color: var(--color-text-secondary); }
.breadcrumbs span { color: var(--color-text-light); }

/* ============================================
   Destination Page - Immersive Hero
   ============================================ */
.dest-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1a2e;
}

.dest-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.dest-hero.loaded .dest-hero__bg { transform: scale(1); }

.dest-hero__particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; width: 4px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 50%; animation: float-particle linear infinite; }
.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 18s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 22s; animation-delay: 3s; width: 5px; height: 5px; }
.particle:nth-child(3) { left: 45%; top: 30%; animation-duration: 15s; animation-delay: 1s; }
.particle:nth-child(4) { left: 65%; top: 70%; animation-duration: 20s; animation-delay: 5s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 80%; top: 15%; animation-duration: 25s; animation-delay: 2s; width: 6px; height: 6px; opacity: 0.08; }
.particle:nth-child(6) { left: 55%; top: 85%; animation-duration: 17s; animation-delay: 7s; }
.particle:nth-child(7) { left: 35%; top: 10%; animation-duration: 19s; animation-delay: 4s; }
.particle:nth-child(8) { left: 75%; top: 45%; animation-duration: 21s; animation-delay: 6s; width: 5px; height: 5px; }

@keyframes float-particle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.dest-hero__content { position: relative; z-index: 2; padding: 0 0 80px; width: 100%; }
.dest-hero__region { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,0.12); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; }
.dest-hero__title { font-family: var(--font-display); font-size: clamp(5rem, 15vw, 12rem); font-weight: 400; color: white; line-height: 0.85; letter-spacing: -0.03em; margin-bottom: 32px; text-shadow: 0 4px 40px rgba(0,0,0,0.3); }
.dest-hero__subtitle { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.85); max-width: 600px; line-height: 1.5; margin-bottom: 20px; }
.dest-hero__desc { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.7; margin-bottom: 0; }

.dest-hero__stats { position: absolute; right: 24px; bottom: 80px; display: flex; flex-direction: column; gap: 12px; z-index: 3; }
.glass-stat { background: rgba(255,255,255,0.1); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); padding: 16px 24px; min-width: 180px; transition: transform 0.4s ease, background 0.4s ease; }
.glass-stat:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.glass-stat__number { font-family: var(--font-display); font-size: 1.8rem; color: white; line-height: 1; }
.glass-stat__label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 4px; }

.scroll-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-indicator__line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* Transparent header for destination pages */
.site-header--transparent .header-bar { background: rgba(0,0,0,0.25); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: rgba(255,255,255,0.08); }
.site-header--transparent .logo-img { filter: brightness(0) invert(1); }
.site-header--transparent .nav-links a { color: rgba(255,255,255,0.85); }
.site-header--transparent .nav-links a:hover { color: white; background: rgba(255,255,255,0.15); }
.site-header--transparent .nav-links a.active { color: white; background: rgba(255,255,255,0.2); font-weight: 600; }
.site-header--transparent .nav-cta { background: var(--color-primary) !important; color: white !important; }
.site-header--transparent .nav-toggle span { background: white; }
.site-header--transparent.scrolled .header-bar { background: var(--color-white); border-color: var(--color-border-light); box-shadow: var(--shadow-md); backdrop-filter: none; }
.site-header--transparent.scrolled .logo-img { filter: none; }
.site-header--transparent.scrolled .nav-links a { color: var(--color-text-secondary); }
.site-header--transparent.scrolled .nav-links a:hover { color: var(--color-text); background: var(--color-bg); }
.site-header--transparent.scrolled .nav-toggle span { background: var(--color-text); }

/* Content + Sticky Sidebar Layout */
.dest-layout { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; padding: 80px 0; }
.dest-content { max-width: 720px; }
.dest-sidebar { position: sticky; top: 100px; }

@media (max-width: 1024px) {
  .dest-layout { grid-template-columns: 1fr; gap: 0; }
  .dest-sidebar { position: static; order: 99; margin-top: 48px; }
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(145deg, #1a1a2e 0%, #2d2b55 50%, #1a1a2e 100%);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  color: white;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -40%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(91,95,199,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.sidebar-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(13,150,104,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.sidebar-cta > * { position: relative; z-index: 1; }
.sidebar-cta__badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-green); margin-bottom: 16px; }
.sidebar-cta__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-green); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.sidebar-cta h3 { color: white; font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; margin-bottom: 6px; line-height: 1.2; }
.sidebar-cta > p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 28px; line-height: 1.5; }

.sidebar-option {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 12px;
  transition: all 0.35s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
}
.sidebar-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sidebar-option:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); color: white; }
.sidebar-option:hover::before { opacity: 1; }
.sidebar-option--featured { border-color: rgba(91,95,199,0.4); background: rgba(91,95,199,0.12); }
.sidebar-option--featured:hover { border-color: rgba(91,95,199,0.6); }

.sidebar-option__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; position: relative; }
.sidebar-option__name { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.sidebar-option__price { background: rgba(255,255,255,0.12); padding: 5px 16px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; }
.sidebar-option--featured .sidebar-option__price { background: var(--color-primary); }
.sidebar-option__desc { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; line-height: 1.5; position: relative; }
.sidebar-option__link { font-size: 0.84rem; font-weight: 600; color: white; display: inline-flex; align-items: center; gap: 6px; position: relative; }
.sidebar-option__link::after { content: '\2192'; transition: transform 0.3s ease; }
.sidebar-option:hover .sidebar-option__link::after { transform: translateX(4px); }

.sidebar-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); margin: 24px 0; }

.sidebar-trust { position: relative; }
.sidebar-trust__item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; line-height: 1.4; }
.sidebar-trust__icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }

/* Content sections */
.dest-section-title { font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; margin-bottom: 20px; margin-top: 48px; }
.dest-section-title:first-child { margin-top: 0; }
.dest-content p { color: var(--color-text-secondary); font-size: 0.97rem; line-height: 1.8; }

/* Day Timeline */
.day-timeline { margin: 48px 0; overflow: visible; }
.day-timeline__title { font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; margin-bottom: 32px; text-align: center; }
.day-timeline__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.day-moment { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border-light); transition: all 0.4s ease; position: relative; }
.day-moment:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.day-moment__visual { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; background-size: cover; background-position: center; }
.day-moment:nth-child(1) .day-moment__visual { background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%); }
.day-moment:nth-child(2) .day-moment__visual { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.day-moment:nth-child(3) .day-moment__visual { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.day-moment:nth-child(4) .day-moment__visual { background: linear-gradient(135deg, #43e97b 0%, #f5af19 100%); }
.day-moment:nth-child(5) .day-moment__visual { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.day-moment:nth-child(6) .day-moment__visual { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.day-moment__time { position: absolute; top: 10px; left: 12px; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); color: white; padding: 3px 10px; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 600; }
.day-moment__body { padding: 16px; }
.day-moment__title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.day-moment__desc { font-size: 0.8rem; color: var(--color-text-secondary); margin-bottom: 0; line-height: 1.5; }

@media (max-width: 1024px) { .day-timeline__track { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .day-timeline__track { grid-template-columns: repeat(2, 1fr); } }

/* Sector cards */
.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
.sector-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--color-border-light); transition: all 0.4s ease; position: relative; overflow: hidden; }
.sector-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.sector-card:hover::before { transform: scaleX(1); }
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.sector-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.sector-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.sector-card p { font-size: 0.85rem; color: var(--color-text-secondary); margin-bottom: 8px; }
.sector-card__positions { font-size: 0.78rem; font-weight: 600; color: var(--color-green); }
@media (max-width: 600px) { .sector-grid { grid-template-columns: 1fr; } }

/* Cost breakdown */
.cost-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
.cost-item { background: var(--color-white); border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--color-border-light); }
.cost-item__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cost-item__label { font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.cost-item__amount { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-primary); }
.cost-item__bar { height: 6px; background: var(--color-bg); border-radius: 3px; overflow: hidden; }
.cost-item__bar-fill { height: 100%; border-radius: 3px; background: var(--color-primary); transition: width 1s ease-out; }
.cost-item__note { font-size: 0.75rem; color: var(--color-text-light); margin-top: 6px; }
.cost-total { grid-column: 1 / -1; background: var(--color-primary-light); border-color: rgba(91,95,199,0.2); }
.cost-total .cost-item__amount { font-size: 1.5rem; }
@media (max-width: 600px) { .cost-grid { grid-template-columns: 1fr; } .cost-total { grid-column: auto; } }

/* Pull quote */
.pull-quote { position: relative; padding: 40px 0; margin: 48px 0; border-top: 1px solid var(--color-border-light); border-bottom: 1px solid var(--color-border-light); }
.pull-quote__text { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--color-text); line-height: 1.4; margin-bottom: 16px; }
.pull-quote__text::before { content: '\201C'; font-size: 3rem; color: var(--color-primary); line-height: 0; vertical-align: -0.4em; margin-right: 8px; }
.pull-quote__author { display: flex; align-items: center; gap: 12px; }
.pull-quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--color-primary); font-size: 0.9rem; }
.pull-quote__name { font-weight: 600; font-size: 0.92rem; }
.pull-quote__detail { font-size: 0.8rem; color: var(--color-text-secondary); }

/* Destination CTA */
.dest-cta { background: var(--color-text); border-radius: var(--radius-xl); padding: 80px 48px; text-align: center; margin: 40px 0 80px; }
.dest-cta h2 { color: white; margin-bottom: 16px; }
.dest-cta p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; }

@media (max-width: 868px) {
  .dest-hero__title { font-size: clamp(3.5rem, 12vw, 6rem); }
  .dest-hero__stats { display: none; }
  .dest-hero__content { padding-bottom: 60px; }
}

@media (max-width: 1024px) {
  .sidebar-cta { border-radius: var(--radius-xl); padding: 32px 24px; }
  .sidebar-option { padding: 20px; }
  .sidebar-cta h3 { font-size: 1.4rem; }
}

/* Fixed mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(26,26,46,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: slide-up 0.4s ease-out;
}
.mobile-cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.mobile-cta-bar__info {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
.mobile-cta-bar__info small {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.mobile-cta-bar .btn {
  white-space: nowrap;
  padding: 10px 24px;
  font-size: 0.88rem;
}
@keyframes slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@media (max-width: 1024px) {
  .mobile-cta-bar { display: block; }
  .dest-page main { padding-bottom: 72px; }
}
@media (min-width: 1025px) {
  .mobile-cta-bar { display: none !important; }
}

/* ============================================
   Blog
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card .blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  background-size: cover;
  background-position: center;
}

.blog-card .blog-body { padding: 20px 24px; }

.blog-card .blog-date {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.blog-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.blog-card h3 a { color: var(--color-text); }
.blog-card h3 a:hover { color: var(--color-primary); }
.blog-card p { font-size: 0.88rem; color: var(--color-text-secondary); }

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card-link:hover .blog-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-link .blog-card:hover { transform: none; }
.blog-card-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-lg);
}

/* Blog featured article */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(145deg, #1a1a2e 0%, #2d2b55 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
  margin-bottom: 40px;
}

.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.blog-featured-image {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body .badge {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.blog-featured-body .badge::before { background: var(--color-green); }
.blog-featured-body h2 { color: white; font-size: 1.8rem; margin-bottom: 16px; }
.blog-featured-body p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.blog-featured-body .blog-meta { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 16px; }

@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-image { min-height: 200px; }
  .blog-featured-body { padding: 32px; }
}

/* Article content */
.article-content { max-width: 720px; margin: 0 auto; }
.article-content h2 { margin-top: 40px; margin-bottom: 16px; }
.article-content h3 { margin-top: 32px; margin-bottom: 12px; }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin-bottom: 16px; padding-left: 24px; }
.article-content li { margin-bottom: 8px; color: var(--color-text-secondary); }
.article-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content blockquote p { color: var(--color-text); margin-bottom: 0; }
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.article-content th, .article-content td { padding: 12px 16px; border: 1px solid var(--color-border); text-align: left; font-size: 0.9rem; }
.article-content th { background: var(--color-bg); font-weight: 600; }
.article-content td { color: var(--color-text-secondary); }

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
}

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

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

.contact-info-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  margin-bottom: 16px;
}

.contact-info-card h3 { margin-bottom: 14px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-detail .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail .text { font-size: 0.93rem; color: var(--color-text-secondary); }
.contact-detail .text strong { display: block; color: var(--color-text); margin-bottom: 2px; }

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

/* ============================================
   Destination listing filters
   ============================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Services page features */
.feature-list { list-style: none; }

.feature-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* About page timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
}

.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { color: var(--color-text-secondary); font-size: 0.93rem; margin-bottom: 0; }

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-green { color: var(--color-green); }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.fade-in-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.fade-in-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.fade-in-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.fade-in-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.fade-in-stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus { top: 16px; }

/* No results message */
.no-results {
  text-align: center;
  padding: 60px 24px;
  color: var(--color-text-secondary);
  display: none;
}
