*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --accent: #ff6b35;
  --bg: #fafafa;
  --card-bg: #fff;
  --text: #1a1a2e;
  --text-light: #555;
  --border: #e0e0e0;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --max-width: 1200px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.site-header .logo span { color: var(--primary); }
.site-header nav a {
  margin-left: 1.5rem;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-header nav a:hover { color: var(--primary); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }
.hero .cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
  text-decoration: none;
}

/* City hero (destination pages) */
.city-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
}
.city-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}
.city-hero .inner { position: relative; z-index: 1; }
.city-hero h1 { font-size: 3rem; font-weight: 800; }
.city-hero p { font-size: 1.2rem; opacity: 0.9; margin-top: 0.5rem; }

/* Section */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
}
.section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.section h2 span { color: var(--primary); }

/* Destination grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.dest-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.dest-card .thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.dest-card .thumb .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.dest-card .info {
  padding: 1.2rem;
}
.dest-card .info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.dest-card .info .country {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.dest-card .info .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dest-card .info .meta .price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}
.dest-card .info .meta .link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Content blocks */
.content-block {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.content-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.content-block p { color: var(--text-light); margin-bottom: 1rem; }
.content-block ul { padding-left: 1.5rem; color: var(--text-light); }
.content-block ul li { margin-bottom: 0.5rem; }

/* Widget container */
.widget-section {
  background: #f0f4ff;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.widget-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.widget-section .subtitle {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #e05520 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.cta-banner h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-banner .btn {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.2s;
}
.cta-banner .btn:hover { transform: translateY(-2px); text-decoration: none; }

/* Insurance callout */
.insurance-callout {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid #43a047;
}
.insurance-callout h3 { color: #2e7d32; }

/* Footer */
.site-footer {
  background: #1a1a2e;
  color: #aaa;
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.85rem;
}
.site-footer a { color: #ccc; }
.site-footer .disclosure {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .city-hero h1 { font-size: 2.2rem; }
  .dest-grid { grid-template-columns: 1fr; }
  .site-header nav a { margin-left: 1rem; font-size: 0.85rem; }
}
