/* SEO city / topic landing pages */
.seo-hero {
  background: linear-gradient(135deg, #1a6fad 0%, #0f5289 100%);
  padding: 60px 24px 50px;
  text-align: center;
  color: #fff;
}
.seo-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.seo-hero .sub {
  font-size: 1.05rem;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 24px;
}
.seo-hero .seo-cta {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all .2s;
}
.seo-hero .seo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, .35);
}
.seo-intro {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  text-align: center;
}
.seo-boats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.seo-boat {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  transition: transform .2s, box-shadow .2s;
}
.seo-boat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}
.seo-boat img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.seo-boat-info { padding: 18px; }
.seo-boat-name {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  margin-bottom: 4px;
}
.seo-boat-specs {
  font-size: .82rem;
  color: #888;
  margin-bottom: 10px;
}
.seo-boat-price {
  font-weight: 700;
  color: #1a6fad;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.seo-boat-btn {
  display: block;
  text-align: center;
  background: #1a6fad;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s;
}
.seo-boat-btn:hover { background: #0f5289; }
.seo-badge {
  display: inline-block;
  background: #e8f4fd;
  color: #1a6fad;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.seo-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 24px;
}
.seo-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: #555;
}
.seo-trust-icon {
  width: 36px;
  height: 36px;
  background: #e8f4fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.seo-faq {
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 24px;
}
.seo-faq h2 {
  font-family: 'Playfair Display', serif;
  color: #1a6fad;
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.seo-faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
}
.seo-faq-q {
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.seo-faq-a {
  font-size: .9rem;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .seo-hero h1 { font-size: 1.6rem; }
  .seo-boats { grid-template-columns: 1fr; }
}
