/* ============================================
   BREEZE — Mediterranean Breeze Design System
   BreezyRide (breezyride.one)
   ============================================ */

/* --- CSS Variables --- */
:root {
  --white: #FFFFFF;
  --warm-white: #FEFCFA;
  --sand: #F5E6D3;
  --sand-light: #FAF3EB;
  --sky: #5BA4CF;
  --sky-light: #D6EAF5;
  --sky-pale: #EDF5FA;
  --mint: #A8D5BA;
  --mint-light: #E0F2E8;
  --coral: #E8734A;
  --coral-hover: #D4623B;
  --text: #2C3E50;
  --text-light: #5D7084;
  --text-faint: #8FA3B5;
  --border: #E8E0D8;
  --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.04);
  --shadow-md: 0 4px 20px rgba(44, 62, 80, 0.06);
  --shadow-lg: 0 8px 40px rgba(44, 62, 80, 0.08);
  --shadow-lift: 0 12px 32px rgba(44, 62, 80, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;
}

/* --- Reset & Base --- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

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


/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 224, 216, 0.5);
  transition: box-shadow 0.3s ease;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--white);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.nav-link:hover { color: var(--text); background: var(--sand-light); }
.nav-link.active { color: var(--sky); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.nav-dropdown-trigger:hover { color: var(--text); background: var(--sand-light); }

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-trigger svg,
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover { background: var(--sky-pale); color: var(--sky); }
.nav-dropdown-menu a.active { color: var(--sky); font-weight: 600; }

/* Header CTA */
.nav-cta {
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: var(--coral);
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 115, 74, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mobile-toggle:hover { background: var(--sand-light); }

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }

.mobile-toggle.active span { background: transparent; }
.mobile-toggle.active span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 99;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-section { margin-bottom: 24px; }

.mobile-menu-section h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 12px;
  padding-left: 4px;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.mobile-menu a:hover {
  background: var(--sky-pale);
  color: var(--sky);
}

.mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--coral);
  border-radius: var(--radius-pill);
  margin-top: 16px;
}

.mobile-menu .mobile-cta:hover {
  background: var(--coral-hover);
}


/* ============================================
   HERO (Homepage)
   ============================================ */

.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--sand-light) 60%, var(--warm-white) 100%);
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Decorative floating shapes */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.hero-decor-1 {
  width: 300px;
  height: 300px;
  background: var(--sky);
  top: -80px;
  right: -60px;
  animation: float-slow 8s ease-in-out infinite;
}

.hero-decor-2 {
  width: 180px;
  height: 180px;
  background: var(--mint);
  bottom: 40px;
  left: -40px;
  animation: float-slow 10s ease-in-out infinite reverse;
}

.hero-decor-3 {
  width: 120px;
  height: 120px;
  background: var(--coral);
  top: 60px;
  left: 15%;
  opacity: 0.06;
  animation: float-slow 7s ease-in-out infinite 2s;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sky);
  background: var(--sky-pale);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  animation: fadeUp 0.6s ease 0.4s both;
}

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

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-faint);
  margin-top: 2px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--coral);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 115, 74, 0.3);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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


/* ============================================
   COUNTRY GRID (Homepage)
   ============================================ */

.countries-section {
  padding: 80px 0 90px;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-pale);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.country-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 224, 216, 0.4);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  display: block;
}

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.country-card-image {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.country-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
}

/* Country gradient placeholders */
.country-card[data-country="bulgaria"] .country-card-image { background: linear-gradient(135deg, #6BAF7A, #4A8F5A); }
.country-card[data-country="greece"] .country-card-image { background: linear-gradient(135deg, #5BA4CF, #3D7BA6); }
.country-card[data-country="turkey"] .country-card-image { background: linear-gradient(135deg, #CF8E5B, #A66D3D); }
.country-card[data-country="albania"] .country-card-image { background: linear-gradient(135deg, #7A9FBA, #5A7D99); }
.country-card[data-country="montenegro"] .country-card-image { background: linear-gradient(135deg, #5B8FCF, #3D6FA6); }
.country-card[data-country="romania"] .country-card-image { background: linear-gradient(135deg, #8A9FBA, #6A7D99); }
.country-card[data-country="croatia"] .country-card-image { background: linear-gradient(135deg, #5BBACF, #3D99A6); }
.country-card[data-country="cyprus"] .country-card-image { background: linear-gradient(135deg, #D4A85B, #B38E3D); }
.country-card[data-country="serbia"] .country-card-image { background: linear-gradient(135deg, #8F7ABF, #6F5A9F); }
.country-card[data-country="macedonia"] .country-card-image { background: linear-gradient(135deg, #BF8A7A, #9F6A5A); }

.country-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  z-index: 2;
}

.country-card-body {
  padding: 20px 22px 22px;
}

.country-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.country-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.country-card-cities {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.country-card-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--coral);
  background: rgba(232, 115, 74, 0.08);
  border-radius: var(--radius-pill);
}

.country-card-arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-pale);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.country-card-arrow svg {
  width: 14px;
  height: 14px;
  color: var(--sky);
}

.country-card:hover .country-card-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================
   VALUE PROPOSITION (Homepage)
   ============================================ */

.value-section {
  padding: 80px 0 90px;
  background: var(--warm-white);
  position: relative;
}

.value-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.value-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.value-intro h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.value-intro-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.75;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 224, 216, 0.3);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.value-card:nth-child(1)::before { background: var(--sky); }
.value-card:nth-child(2)::before { background: var(--coral); }
.value-card:nth-child(3)::before { background: var(--mint); }

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

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--sky-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sky);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-icon-coral {
  background: rgba(232, 115, 74, 0.1);
  color: var(--coral);
}

.value-icon-mint {
  background: var(--mint-light);
  color: #5AA87A;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  padding: 16px 0;
  font-size: 0.84rem;
  color: var(--text-faint);
}

.breadcrumb a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--sky); }
.breadcrumb span { margin: 0 8px; }


/* ============================================
   COUNTRY HERO (Country Hub)
   ============================================ */

.country-hero {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, var(--white) 0%, var(--sand-light) 100%);
  position: relative;
  overflow: hidden;
}

.country-hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.country-hero-decor-1 {
  width: 260px;
  height: 260px;
  background: var(--sky);
  top: -80px;
  right: -40px;
}

.country-hero-decor-2 {
  width: 160px;
  height: 160px;
  background: var(--mint);
  bottom: -40px;
  left: 10%;
}

.country-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.country-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.country-hero-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.country-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 224, 216, 0.5);
}

.pill svg {
  width: 15px;
  height: 15px;
  color: var(--sky);
}

.pill strong {
  font-weight: 600;
  color: var(--text);
}

.pill-price {
  background: rgba(232, 115, 74, 0.06);
  border-color: rgba(232, 115, 74, 0.15);
}

.pill-price strong {
  color: var(--coral);
}


/* ============================================
   CITY CARDS (Country Hub)
   ============================================ */

.cities-section {
  padding: 60px 0 80px;
  background: var(--white);
}

.cities-section-header {
  margin-bottom: 36px;
}

.cities-section-header h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.cities-section-header p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.city-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 224, 216, 0.4);
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none;
}

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

.city-card-image {
  width: 140px;
  min-height: 180px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.city-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-card-image-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
}

.city-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.city-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.city-card-description {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 14px;
}

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

.city-tag {
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  background: var(--sky-pale);
  color: var(--sky);
}

.city-tag.airport {
  background: var(--mint-light);
  color: #4A8F6A;
}

.city-tag.popular {
  background: rgba(232, 115, 74, 0.08);
  color: var(--coral);
}

.city-card-price {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-card-price-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
}


/* ============================================
   TIPS (Country Hub)
   ============================================ */

.tips-section {
  padding: 70px 0 80px;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}

.tips-header {
  margin-bottom: 40px;
}

.tips-header h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.tips-header p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 224, 216, 0.4);
  transition: all 0.3s ease;
}

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

.tip-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--sky-pale);
  color: var(--sky);
}

.tip-card-icon svg {
  width: 22px;
  height: 22px;
}

.tip-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.tip-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.tip-card.highlight-tip {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--sky-pale), var(--white));
  border-color: var(--sky-light);
}


/* ============================================
   NEIGHBORS (Country Hub)
   ============================================ */

.neighbors-section {
  padding: 60px 0 70px;
  background: var(--white);
}

.neighbors-header {
  margin-bottom: 28px;
}

.neighbors-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.neighbors-header p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.neighbors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.neighbor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
}

.neighbor-card:hover {
  border-color: var(--sky-light);
  background: var(--sky-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.neighbor-card-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
}

.neighbor-card[data-country="montenegro"] .neighbor-card-dot { background: linear-gradient(135deg, #5B8FCF, #3D6FA6); }
.neighbor-card[data-country="serbia"] .neighbor-card-dot { background: linear-gradient(135deg, #8F7ABF, #6F5A9F); }
.neighbor-card[data-country="slovenia"] .neighbor-card-dot { background: linear-gradient(135deg, #6BAF7A, #4A8F5A); }
.neighbor-card[data-country="albania"] .neighbor-card-dot { background: linear-gradient(135deg, #7A9FBA, #5A7D99); }
.neighbor-card[data-country="greece"] .neighbor-card-dot { background: linear-gradient(135deg, #5BA4CF, #3D7BA6); }
.neighbor-card[data-country="turkey"] .neighbor-card-dot { background: linear-gradient(135deg, #CF8E5B, #A66D3D); }
.neighbor-card[data-country="romania"] .neighbor-card-dot { background: linear-gradient(135deg, #8A9FBA, #6A7D99); }
.neighbor-card[data-country="bulgaria"] .neighbor-card-dot { background: linear-gradient(135deg, #6BAF7A, #4A8F5A); }

.neighbor-card-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.neighbor-card-info span {
  font-size: 0.78rem;
  color: var(--text-faint);
}


/* ============================================
   CTA SECTION (Country Hub bottom)
   ============================================ */

.cta-section {
  padding: 0 0 80px;
  background: var(--white);
}

.cta-block-centered {
  text-align: center;
  padding: 56px 48px;
}

.cta-block-centered .cta-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.cta-block-centered .cta-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content {
  position: relative;
  z-index: 2;
}


/* ============================================
   CTA BLOCK (Custom _cta.html.erb)
   ============================================ */

.cta-block {
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -35px;
  right: -35px;
  width: 120px;
  height: 120px;
  background: var(--sky);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 40px;
  width: 70px;
  height: 70px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cta-text {
  flex: 1;
}

.cta-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky);
  background: rgba(91, 164, 207, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.cta-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.cta-description {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-light);
  margin: 0;
}

.cta-action {
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--coral);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 115, 74, 0.35);
  color: var(--white);
}

.cta-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(3px);
}


/* ============================================
   CITY HERO (City Landing)
   ============================================ */

.city-hero {
  position: relative;
  padding: 0 0 60px;
}

.city-hero-image {
  height: 300px;
  background: linear-gradient(135deg, #CF8E5B, #D4A87A, #B37A4A);
  position: relative;
  margin: 0 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.city-hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.35), transparent);
  pointer-events: none;
}

.city-hero-content {
  max-width: 800px;
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.city-hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232, 224, 216, 0.3);
}

.city-hero-card h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}

.city-name { color: var(--sky); }
.country-name { color: var(--sky); }

.city-hero-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 24px;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.quick-fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  background: var(--warm-white);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.quick-fact svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  flex-shrink: 0;
}

.quick-fact strong {
  font-weight: 600;
  color: var(--text);
}

.quick-fact.price-fact {
  background: rgba(232, 115, 74, 0.06);
  border-color: rgba(232, 115, 74, 0.15);
}

.quick-fact.price-fact strong {
  color: var(--coral);
}

.city-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--coral);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.city-hero-cta:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 115, 74, 0.3);
  color: var(--white);
}

.city-hero-cta svg {
  width: 16px;
  height: 16px;
}


/* ============================================
   TABLE OF CONTENTS
   ============================================ */

.toc {
  padding: 0 0 48px;
}

.toc-inner {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--border);
}

.toc h2 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.toc-list li {
  display: inline;
}

.toc-list a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.toc-list a:hover {
  color: var(--sky);
  border-color: var(--sky-light);
  background: var(--sky-pale);
}


/* ============================================
   ARTICLE LAYOUT (Two-column)
   ============================================ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding-bottom: 60px;
}

.article-main {
  min-width: 0;
}


/* ============================================
   ARTICLE CONTENT (Typography)
   ============================================ */

.article-content h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 18px;
  padding-top: 8px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content a:not(.cta-button) {
  color: var(--sky);
  text-decoration: underline;
  text-decoration-color: var(--sky-light);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.article-content a:not(.cta-button):hover {
  text-decoration-color: var(--sky);
}

.article-content ul,
.article-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-content li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 6px;
}

.article-content img {
  border-radius: var(--radius-lg);
  margin: 28px 0;
  box-shadow: var(--shadow-md);
}

.article-content img.full-bleed {
  width: 100%;
  border-radius: var(--radius-xl);
}

.article-content blockquote {
  margin: 40px 0;
  padding: 32px 36px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--sky);
}

.article-content blockquote p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
}

.article-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.article-content thead {
  background: var(--warm-white);
}

.article-content th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}

.article-content td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(232, 224, 216, 0.5);
  color: var(--text);
}

.article-content tr:last-child td {
  border-bottom: none;
}

.article-content strong {
  font-weight: 600;
}

.article-content hr {
  border: none;
  height: 3px;
  width: 60px;
  background: var(--sky-light);
  border-radius: 2px;
  margin: 48px 0;
}


/* ============================================
   CONTENT SECTIONS (City Landing structured data)
   ============================================ */

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

.content-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
  padding-top: 8px;
}

.content-section p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.info-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid var(--border);
}

.info-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Price Table */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.price-table thead {
  background: var(--warm-white);
}

.price-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(232, 224, 216, 0.5);
  color: var(--text);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-note {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 16px;
}

.price-extras {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 12px;
}

.season-name {
  font-weight: 600;
}

.price-range {
  font-weight: 700;
  color: var(--coral);
}

/* Speed Limits */
.speed-limits {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.speed-limits h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.speed-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.speed-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.84rem;
  color: var(--text-light);
  background: var(--white);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.speed-pill strong {
  font-weight: 700;
  color: var(--text);
}

/* Callouts */
.tip-callout {
  background: var(--sky-pale);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 24px 0;
  border-left: 4px solid var(--sky);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tip-callout svg {
  width: 20px;
  height: 20px;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-callout p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0;
}

.warning-callout {
  background: rgba(232, 115, 74, 0.06);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 24px 0;
  border-left: 4px solid var(--coral);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.warning-callout svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-callout p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Content List */
.content-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.content-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-light);
  border: 2px solid var(--sky);
}


/* ============================================
   SIDEBAR (City Landing)
   ============================================ */

.sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

.sidebar-block {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sidebar-heading {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-heading svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
}

.sidebar-city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  margin-bottom: 2px;
}

.sidebar-city:hover {
  background: var(--sky-pale);
}

.sidebar-city.active {
  background: var(--sky-pale);
  font-weight: 600;
}

.sidebar-city-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.sidebar-city-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--coral);
}

.sidebar-hub-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sky);
  border-top: 1px solid var(--border);
  margin-top: 8px;
  transition: all 0.2s ease;
}

.sidebar-hub-link svg {
  width: 14px;
  height: 14px;
}

.sidebar-hub-link:hover {
  color: var(--text);
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--sand-light), var(--sand));
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: var(--sky);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.sidebar-cta-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky);
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 16px;
}

.sidebar-cta .cta-button {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.88rem;
}


/* ============================================
   RELATED CITIES (City Landing)
   ============================================ */

.related-section {
  padding: 60px 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}

.related-header {
  margin-bottom: 28px;
}

.related-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.related-header p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.related-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 224, 216, 0.4);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}

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

.related-card-image {
  height: 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-body {
  padding: 14px 16px;
}

.related-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.related-card-body span {
  font-size: 0.78rem;
  color: var(--text-faint);
}


/* ============================================
   ABOUT PAGE (article_simple)
   ============================================ */

.about-hero {
  padding: 60px 0 48px;
  background: linear-gradient(180deg, var(--white) 0%, var(--sand-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.about-hero-decor-1 {
  width: 200px;
  height: 200px;
  background: var(--sky);
  top: -60px;
  right: 10%;
}

.about-hero-decor-2 {
  width: 140px;
  height: 140px;
  background: var(--mint);
  bottom: -40px;
  left: 15%;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sky);
  background: var(--sky-pale);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.about-hero-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* About Body */
.about-body {
  padding: 48px 0 80px;
}

.about-body .article-content h2 {
  margin-top: 48px;
}

.about-body .article-content h2:first-child {
  margin-top: 0;
}

/* About Separator */
.about-separator {
  width: 60px;
  height: 3px;
  background: var(--sky-light);
  border-radius: 2px;
  margin: 48px 0;
}

/* About Values */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}

.about-value {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-value:nth-child(1) .about-value-icon { background: var(--sky-pale); color: var(--sky); }
.about-value:nth-child(2) .about-value-icon { background: rgba(232, 115, 74, 0.1); color: var(--coral); }
.about-value:nth-child(3) .about-value-icon { background: var(--mint-light); color: #5AA87A; }
.about-value:nth-child(4) .about-value-icon { background: var(--sand); color: #A0845A; }

.about-value-icon svg {
  width: 22px;
  height: 22px;
}

.about-value-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.about-value-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* About Countries */
.about-countries {
  margin: 36px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-country-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.about-country-pill:hover {
  border-color: var(--sky-light);
  color: var(--sky);
  background: var(--sky-pale);
}

/* Pull Quote (in article content) */
.pull-quote {
  margin: 40px 0;
  padding: 32px 36px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--sky);
}

.pull-quote p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0;
}


/* ============================================
   GDPR BANNER
   ============================================ */

.gdpr-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232, 224, 216, 0.4);
  padding: 28px 28px 24px;
  z-index: 9999;
  animation: gdpr-slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gdpr-slide-up {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.gdpr-banner::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--sky);
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.gdpr-banner::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--sand);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.gdpr-icon {
  width: 36px;
  height: 36px;
  background: var(--sand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.gdpr-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--coral);
}

.gdpr-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.gdpr-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-light);
  margin-bottom: 20px;
}

.gdpr-text a {
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gdpr-text a:hover {
  color: var(--coral);
}

.gdpr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gdpr-btn-accept {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--coral);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gdpr-btn-accept:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 115, 74, 0.3);
}

.gdpr-btn-decline {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gdpr-btn-decline:hover {
  color: var(--text);
  border-color: var(--text-light);
}


/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: 64px 0 32px;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.footer-countries h4,
.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.footer-countries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.footer-countries-grid a,
.footer-links a {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-countries-grid a:hover,
.footer-links a:hover { color: var(--sky); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-faint);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ============================================
   RESPONSIVE — 1024px
   ============================================ */

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

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .value-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .country-hero-content h1 { font-size: 2.3rem; }

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

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


/* ============================================
   RESPONSIVE — 768px
   ============================================ */

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }

  /* Hero */
  .hero { padding: 50px 0 70px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 24px; margin-top: 36px; }
  .hero-stat-value { font-size: 1.4rem; }

  /* Country Hero */
  .country-hero { padding: 28px 0 44px; }
  .country-hero-content h1 { font-size: 1.9rem; }
  .country-hero-subtitle { font-size: 0.95rem; }
  .country-hero-pills { gap: 8px; }
  .pill { font-size: 0.78rem; padding: 6px 12px; }

  /* City Hero */
  .city-hero-image {
    margin: 0 16px;
    height: 220px;
    border-radius: var(--radius-lg);
  }
  .city-hero-card {
    padding: 28px 24px;
  }
  .city-hero-card h1 { font-size: 1.8rem; }
  .city-hero-tagline { font-size: 0.9rem; }

  /* Cities */
  .cities-section { padding: 44px 0 56px; }
  .city-card { flex-direction: column; }
  .city-card-image { width: 100%; min-height: 140px; height: 140px; }

  /* Tips */
  .tips-section { padding: 50px 0 60px; }
  .tips-grid { grid-template-columns: 1fr; }
  .tip-card.highlight-tip { grid-column: span 1; }

  /* Neighbors */
  .neighbors-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-block { padding: 28px 24px; }
  .cta-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-button { width: 100%; justify-content: center; }
  .cta-block-centered { padding: 40px 24px; }

  /* Info Cards */
  .info-cards { grid-template-columns: 1fr; }

  /* Sidebar */
  .sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* TOC */
  .toc-list { gap: 6px; }

  /* About */
  .about-hero { padding: 44px 0 36px; }
  .about-hero h1 { font-size: 2rem; }
  .about-hero-subtitle { font-size: 0.95rem; }
  .about-body { padding: 36px 0 60px; }
  .about-value { padding: 20px; }

  /* Section headers */
  .section-header h2 { font-size: 1.8rem; }
  .value-intro h2 { font-size: 1.8rem; }

  /* Related */
  .related-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ============================================
   RESPONSIVE — 480px
   ============================================ */

@media (max-width: 480px) {
  .container,
  .container-narrow { padding: 0 16px; }

  .hero h1 { font-size: 1.8rem; }

  .country-hero-content h1 { font-size: 1.6rem; }

  .city-hero-card h1 { font-size: 1.5rem; }
  .city-hero-content { margin-top: -30px; }

  .about-hero h1 { font-size: 1.7rem; }

  .neighbors-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }

  /* GDPR */
  .gdpr-banner {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 22px 20px 20px;
  }

  .gdpr-actions {
    flex-direction: column;
    gap: 8px;
  }

  .gdpr-btn-accept,
  .gdpr-btn-decline {
    width: 100%;
    justify-content: center;
  }
}
