:root {
  /* NAVIGATE AUTO FLOW™ Color System */
  --bg-primary: #F7F4EE;
  --bg-cream: #FFFDF8;
  --bg-surface: #FFFFFF;
  --nav-deep: #202A44;
  --route-blue: #345995;
  --ocean-accent: #3AAFA9;
  --energy-orange: #F47C48;
  --travel-yellow: #F4D35E;
  --fresh-green: #4CAF50;
  --warm-sand: #D8C3A5;
  
  --text-main: #17202A;
  --text-secondary: #5C677D;
  --text-muted: #8B98A5;
  
  --border-color: #E1DDD5;
  --shadow-light: rgba(23, 32, 42, 0.10);
  --shadow-hover: rgba(52, 89, 149, 0.15);

  --font-heading: 'Lexend', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  --transition-speed: 0.3s;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--nav-deep);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--route-blue);
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--ocean-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

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

/* Header & Navigation */
.site-header {
  background-color: var(--bg-surface);
  box-shadow: 0 2px 10px var(--shadow-light);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: padding var(--transition-speed);
  padding: 16px 0;
}

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

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nav-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--route-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg-surface), 0 0 0 6px var(--ocean-accent);
}

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--route-blue);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--route-blue);
  transition: width var(--transition-speed);
}

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

.cta-button {
  background-color: var(--route-blue);
  color: var(--bg-surface);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.cta-button:hover {
  background-color: var(--ocean-accent);
  color: var(--bg-surface);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--nav-deep);
  border: 2px solid var(--nav-deep);
}

.btn-secondary:hover {
  background-color: var(--nav-deep);
  color: var(--bg-surface);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--nav-deep);
  cursor: pointer;
}

/* Sections & Routing System */
section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.route-marker {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--bg-cream);
  color: var(--route-blue);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--warm-sand) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

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

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px var(--shadow-light);
}

.hero-route-overlay {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--bg-surface);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 20px var(--shadow-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-route-overlay::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--energy-orange);
  display: block;
}

/* Cards & Destinations */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.route-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-color);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--ocean-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-speed);
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-hover);
}

.route-card:hover::before {
  transform: scaleY(1);
}

.route-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--route-blue);
  font-size: 1.5rem;
  border: 1px solid var(--border-color);
}

.route-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.route-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.route-link {
  font-weight: 600;
  color: var(--nav-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.route-link:hover {
  color: var(--route-blue);
  gap: 12px;
}

/* Journey Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--route-blue), var(--route-blue) 10px, transparent 10px, transparent 20px);
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 48px;
  width: 100%;
}

.timeline-step:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-content {
  width: 90%;
  background: var(--bg-surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px var(--shadow-light);
  position: relative;
}

.timeline-step::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--bg-surface);
  border: 4px solid var(--ocean-accent);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content h4 {
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Content Pages */
.page-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--nav-deep);
  color: var(--bg-surface);
  text-align: center;
}

.page-hero h1 {
  color: var(--bg-surface);
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.content-section {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-text ul {
  list-style: none;
  margin: 24px 0;
}

.content-text li {
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

.content-text li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ocean-accent);
  font-weight: bold;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nav-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--route-blue);
  transition: transform var(--transition-speed);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed), padding var(--transition-speed);
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 500px;
}

/* Forms */
.contact-form {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px var(--shadow-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--nav-deep);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--bg-cream);
  transition: border-color var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--route-blue);
}

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

/* Footer */
.site-footer {
  background-color: var(--nav-deep);
  color: var(--bg-surface);
  padding: 80px 0 40px;
}

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

.footer-brand .brand-logo {
  color: var(--bg-surface);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--bg-surface);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--ocean-accent);
}

.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.85rem;
  color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-surface);
  box-shadow: 0 -5px 20px var(--shadow-light);
  padding: 24px;
  z-index: 2000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}

.btn-accept {
  background-color: var(--route-blue);
  color: var(--bg-surface);
}

.btn-reject {
  background-color: var(--border-color);
  color: var(--text-main);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Breakpoints */
@media (max-width: 1200px) {
  .hero-grid { gap: 32px; }
  .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-route-overlay { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .timeline::before { left: 30px; }
  .timeline-step, .timeline-step:nth-child(even) {
    justify-content: flex-start;
    padding-left: 80px;
    padding-right: 0;
  }
  .timeline-step::after { left: 30px; }
  .timeline-content { width: 100%; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 20px var(--shadow-light);
  }
  .nav-menu.active { display: flex; }
  .mobile-toggle { display: block; }
  .cta-button { display: none; } /* Hide in header, show in menu if needed */
  
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}