/* ============================================================
   FERRARI PARK TRAVEL PLANNER — MAIN STYLESHEET
   Colors: Light Gray + Red + Blue | Travel Planner Style
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Brand Colors */
  --red-primary: #D72B2B;
  --red-dark: #A81E1E;
  --red-light: #F04444;
  --red-pale: #FFF0F0;

  --blue-primary: #1A3A6B;
  --blue-secondary: #2255A4;
  --blue-light: #4A7CC7;
  --blue-pale: #EEF4FF;

  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D1D1D6;
  --gray-400: #A0A0AB;
  --gray-500: #707079;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;

  --white: #FFFFFF;
  --black: #0A0A0A;

  /* Semantic */
  --text-primary: #18181B;
  --text-secondary: #52525B;
  --text-muted: #A0A0AB;
  --border-color: #E4E4E7;
  --bg-light: #F8F8FA;
  --bg-section: #F4F4F5;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;

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

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.10);
  --shadow-red: 0 8px 24px rgba(215, 43, 43, 0.25);
  --shadow-blue: 0 8px 24px rgba(26, 58, 107, 0.20);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Container */
  --container-max: 1240px;
  --container-pad: 1.5rem;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover { color: var(--red-primary); }

ul, ol { list-style: none; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
}

.text-red { color: var(--red-primary); }
.text-blue { color: var(--blue-primary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.08em; }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: var(--space-lg);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover { color: var(--red-primary); }
.nav-link.active { color: var(--red-primary); }

.nav-link .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown { display: block; }
.nav-item:hover .nav-link .arrow { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  z-index: 100;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--red-pale);
  color: var(--red-primary);
}

.dropdown-item .icon {
  width: 22px;
  height: 22px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.navbar-cta {
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red-primary);
  color: var(--white);
  border-color: var(--red-primary);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(215, 43, 43, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--red-primary);
  border-color: var(--red-primary);
}

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

.btn-blue {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-blue);
}

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

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

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-primary);
  border-color: var(--white);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

/* === HERO SECTIONS === */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-primary) 0%, #0F2449 50%, #1A1A2E 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(215,43,43,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74,124,199,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(215,43,43,0.2);
  border: 1px solid rgba(215,43,43,0.4);
  color: #ff8080;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.hero-title span { color: var(--red-light); }

.hero-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* Hero Visual / Map Panel */
.hero-visual {
  position: relative;
}

.hero-map-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  background: linear-gradient(145deg, rgba(26,58,107,0.8) 0%, rgba(215,43,43,0.15) 100%);
  border-radius: var(--radius-lg);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-pin-dot {
  width: 20px;
  height: 20px;
  background: var(--red-primary);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 0 6px rgba(215,43,43,0.25), 0 0 0 12px rgba(215,43,43,0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(215,43,43,0.25), 0 0 0 12px rgba(215,43,43,0.1); }
  50% { box-shadow: 0 0 0 10px rgba(215,43,43,0.15), 0 0 0 20px rgba(215,43,43,0.05); }
}

.map-pin-label {
  background: var(--white);
  color: var(--blue-primary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.75rem;
  font-family: var(--font-heading);
}

.hero-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.8rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 600;
}

.info-chip-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* === PAGE HERO (Smaller) === */
.page-hero {
  background: linear-gradient(135deg, var(--blue-primary) 0%, #0F2449 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(215,43,43,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.breadcrumb-current { color: rgba(255,255,255,0.85); }

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(215,43,43,0.18);
  border: 1px solid rgba(215,43,43,0.35);
  color: #ff9999;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.page-hero-title {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 680px;
}

/* === SECTION === */
.section {
  padding: var(--space-4xl) 0;
}

.section-sm { padding: var(--space-3xl) 0; }
.section-lg { padding: 6rem 0; }

.section-alt { background: var(--bg-section); }
.section-dark {
  background: linear-gradient(135deg, var(--blue-primary) 0%, #0F2449 100%);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-dark p { color: rgba(255,255,255,0.72); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red-pale);
  color: var(--red-primary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading);
}

.section-dark .section-tag {
  background: rgba(215,43,43,0.18);
  color: #ff9999;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* === CARDS === */
.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(215,43,43,0.2);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(145deg, var(--blue-pale), var(--red-pale));
}

.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(145deg, var(--blue-pale) 0%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.card-body { padding: 1.5rem; }
.card-body-lg { padding: 2rem; }

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--red-pale);
  color: var(--red-primary);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.card-tag-blue {
  background: var(--blue-pale);
  color: var(--blue-secondary);
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.card-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-link:hover { gap: 0.6rem; color: var(--red-dark); }

/* Feature Cards */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), var(--blue-secondary));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-icon-red {
  background: var(--red-pale);
  color: var(--red-primary);
}

.feature-icon-blue {
  background: var(--blue-pale);
  color: var(--blue-secondary);
}

.feature-icon-gray {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* Info Cards */
.info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--red-primary);
}

.info-card-blue { border-left-color: var(--blue-secondary); }

/* Tip Box */
.tip-box {
  background: linear-gradient(135deg, var(--blue-pale), var(--white));
  border: 1px solid rgba(74,124,199,0.25);
  border-left: 4px solid var(--blue-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.tip-box-red {
  background: linear-gradient(135deg, var(--red-pale), var(--white));
  border: 1px solid rgba(215,43,43,0.2);
  border-left: 4px solid var(--red-primary);
}

.tip-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-secondary);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.tip-box-red .tip-label { color: var(--red-primary); }

/* === GRIDS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.75rem; }

/* === TIMELINE === */
.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red-primary), var(--blue-secondary), var(--gray-200));
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-marker {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--white);
  border: 3px solid var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--red-primary);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.timeline-marker-blue { border-color: var(--blue-secondary); color: var(--blue-secondary); }

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  flex: 1;
  box-shadow: var(--shadow-sm);
}

.timeline-time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-primary);
  margin-bottom: 0.35rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* === CHECKLIST === */
.checklist { list-style: none; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--red-pale);
  color: var(--red-primary);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.checklist-blue li::before {
  background: var(--blue-pale);
  color: var(--blue-secondary);
}

/* Numbered list */
.num-list { list-style: none; counter-reset: num; }

.num-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  counter-increment: num;
}

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

.num-list li::before {
  content: counter(num);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

/* === STAT BOXES === */
.stat-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--red-primary), var(--blue-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
}

/* === MAP EMBED PLACEHOLDER === */
.map-embed {
  background: linear-gradient(145deg, var(--blue-pale), var(--gray-100));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-embed-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,58,107,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,58,107,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-embed-content { position: relative; z-index: 2; text-align: center; }

.map-embed-pin {
  width: 40px;
  height: 40px;
  background: var(--red-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
}

.map-embed-pin::after {
  content: '📍';
  transform: rotate(45deg);
  font-size: 1.2rem;
}

.map-embed-label {
  background: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-primary);
}

.map-embed-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* === ACCORDION === */
.accordion { border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; }

.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-item:last-child { border-bottom: none; }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--white);
  transition: background var(--transition-fast);
  user-select: none;
}

.accordion-header:hover { background: var(--gray-50); }

.accordion-icon {
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.accordion-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.accordion-item.open .accordion-body { display: block; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--red-pale); color: var(--red-primary); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 50%, #7a1212 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; }

.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === FOOTER === */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.footer-brand-sub {
  font-size: 0.75rem;
  color: var(--red-light);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.footer-contact-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

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

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a:hover { color: var(--red-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Disclaimer bar */
.disclaimer-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 0;
  font-size: 0.72rem;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.6;
}

/* === SIDEBAR LAYOUT === */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.sidebar { position: sticky; top: 90px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  transition: color var(--transition-fast);
  font-family: var(--font-heading);
}

.sidebar-nav-link:last-child { border-bottom: none; }
.sidebar-nav-link:hover { color: var(--red-primary); }
.sidebar-nav-link.active { color: var(--red-primary); }

.sidebar-nav-link .dot {
  width: 6px;
  height: 6px;
  background: var(--border-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.sidebar-nav-link:hover .dot,
.sidebar-nav-link.active .dot {
  background: var(--red-primary);
}

/* === TABLE === */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.info-table th {
  background: var(--blue-primary);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
}

.info-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  vertical-align: top;
}

.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: var(--gray-50); }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-red { background: var(--red-pale); color: var(--red-primary); }
.badge-blue { background: var(--blue-pale); color: var(--blue-secondary); }
.badge-green { background: #f0fdf4; color: #16a34a; }
.badge-orange { background: #fff7ed; color: #ea580c; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* === DIVIDERS === */
.divider {
  height: 1px;
  background: var(--border-color);
  margin: 2rem 0;
}

.divider-red {
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), transparent);
  border: none;
  margin: 1.5rem 0;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.highlight-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.highlight-box p { color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }

/* === QUICK NAV (Internal linking strip) === */
.quick-nav {
  background: var(--gray-50);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.quick-nav-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  flex-shrink: 0;
}

.quick-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--blue-secondary);
  text-decoration: none;
  padding: 0.3rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.quick-nav a:hover {
  background: var(--red-primary);
  color: var(--white);
  border-color: var(--red-primary);
}

/* === WEATHER CARD === */
.weather-card {
  background: linear-gradient(135deg, #e8f4fd, #d6eaf8);
  border: 1px solid #bee3f8;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
}

.weather-month {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-secondary);
  margin-bottom: 0.35rem;
}

.weather-temp {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.weather-desc {
  font-size: 0.8rem;
  color: var(--blue-light);
  font-weight: 600;
}

/* === TRANSPORT CARD === */
.transport-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.transport-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(215,43,43,0.2);
}

.transport-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--red-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.transport-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.transport-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), var(--blue-secondary));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  border: none;
  z-index: 500;
  text-decoration: none;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); color: var(--white); transform: translateY(-3px); }

/* === MOBILE NAV MENU === */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 1rem;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover { background: var(--red-pale); color: var(--red-primary); }

.mobile-dropdown { padding-left: 1.5rem; display: none; }
.mobile-dropdown.open { display: block; }

.mobile-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.mobile-dropdown a:hover { color: var(--red-primary); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .layout-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar { position: static; }
}

@media (max-width: 900px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }

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

  .hero-visual { display: none; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .hero { padding: 3rem 0 2.5rem; }

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

  .hero-stats { flex-wrap: wrap; gap: 1rem; }

  .cta-banner { padding: 2rem 1.5rem; }

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

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* === UTILITIES === */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }

.w-full { width: 100%; }
.rounded { border-radius: var(--radius-lg); }

.content-article h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--blue-primary);
}

.content-article h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-primary);
}

.content-article p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.content-article ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-article ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
</style>