/* SEO landing page styles */
.seo-page {
  background: #f7fafc;
}

.seo-hero {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.seo-hero h1 {
  font-size: 2.5rem;
  margin: 0 0 15px;
  color: #fff;
  line-height: 1.2;
}

.seo-hero .seo-subtitle {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 25px;
  color: #e2e8f0;
  line-height: 1.6;
}

.seo-hero .seo-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.seo-badge {
  background: rgba(197, 164, 126, 0.2);
  border: 1px solid #c5a47e;
  color: #c5a47e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.seo-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.seo-section {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.seo-section h2 {
  font-size: 1.75rem;
  color: #1a202c;
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c5a47e;
}

.seo-section h3 {
  font-size: 1.2rem;
  color: #c62828;
  margin: 20px 0 10px;
}

.seo-section p,
.seo-section li {
  line-height: 1.7;
  color: #444;
}

.seo-section ul {
  padding-left: 20px;
}

.seo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.seo-stat {
  text-align: center;
  padding: 20px 10px;
  background: #f7fafc;
  border-radius: 8px;
  border-left: 4px solid #c5a47e;
}

.seo-stat strong {
  display: block;
  font-size: 1.4rem;
  color: #1a202c;
}

.seo-stat span {
  font-size: 0.85rem;
  color: #666;
}

.seo-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
}

.seo-faq-item:last-child { border-bottom: none; }

.seo-faq-item h4 {
  margin: 0 0 8px;
  color: #1a202c;
  font-size: 1.05rem;
}

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

.seo-related a {
  display: block;
  padding: 12px 15px;
  background: #f7fafc;
  border-radius: 6px;
  color: #1a202c;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, background 0.2s;
}

.seo-related a:hover {
  border-color: #c5a47e;
  background: #fff;
}

.seo-cta-box {
  text-align: center;
  background: #c5a47e;
  color: #1a202c;
  padding: 40px 30px;
  border-radius: 8px;
  margin-top: 30px;
}

.seo-cta-box h2 { color: #1a202c; border: none; margin-bottom: 10px; }

.seo-cta-box .btn-primary {
  margin: 5px 10px;
}

.seo-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px 0;
  font-size: 0.9rem;
  color: #666;
}

.seo-breadcrumb a {
  color: #c5a47e;
  text-decoration: none;
}

.small-muted { margin-top: 10px; font-size: 0.9rem; color: #666; text-align: center; }

/* Sticky booking bar - every SEO page */
.seo-booking-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #1a202c;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-size: 0.95rem;
}

.seo-booking-bar strong { color: #c5a47e; }

.seo-booking-bar a {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}

.seo-booking-bar a:hover { background: rgba(255,255,255,0.1); }

.seo-booking-bar a.seo-book-btn {
  background: #c5a47e;
  color: #1a202c;
  border-color: #c5a47e;
}

.seo-booking-bar a.seo-book-btn:hover { background: #b3916d; }

.seo-mid-cta {
  background: linear-gradient(135deg, #1a202c, #2d3748);
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin: 25px 0;
}

.seo-mid-cta h3 { color: #c5a47e; margin: 0 0 10px; font-size: 1.4rem; }

.seo-mid-cta p { color: #e2e8f0; margin-bottom: 15px; }

.seo-content-block p { margin-bottom: 14px; }

.seo-rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.seo-rates-table th,
.seo-rates-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.seo-rates-table th {
  background: #f7fafc;
  color: #1a202c;
  font-weight: 600;
}

.seo-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.seo-steps li {
  counter-increment: step;
  padding: 12px 0 12px 45px;
  position: relative;
  border-bottom: 1px dashed #e2e8f0;
}

.seo-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  background: #c5a47e;
  color: #1a202c;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
  font-size: 0.85rem;
}

.seo-home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.seo-home-links a {
  color: #c5a47e;
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-hero h1 { font-size: 1.8rem; }
  .seo-stats { grid-template-columns: repeat(2, 1fr); }
  .seo-section { padding: 20px; }
}
