/* Service/Area Hero Section */
.hh-service-hero {
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.hh-service-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--hh-text);
}

.hh-service-tagline {
  font-size: 1.2rem;
  color: var(--hh-muted);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hh-service-price {
  font-size: 1.1rem;
  color: var(--hh-brand-teal);
  margin-bottom: 2rem;
}

.hh-service-price strong {
  font-size: 1.3rem;
  color: var(--hh-brand-orange);
}

/* Two-column service layout */
.hh-service-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.hh-service-main h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--hh-text);
  font-size: 1.5rem;
}

.hh-service-main p {
  line-height: 1.8;
  color: var(--hh-muted);
  margin-bottom: 1rem;
}

/* Checklist */
.hh-checklist {
  list-style: none;
  padding: 0;
}

.hh-checklist li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--hh-muted);
  line-height: 1.6;
}

.hh-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--hh-brand-teal);
  font-weight: 700;
}

/* Pricing highlight */
.hh-pricing-highlight {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0 2rem;
}

.hh-pricing-highlight p {
  margin-bottom: 0.5rem;
}

/* Pricing table */
.hh-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.hh-pricing-table th,
.hh-pricing-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hh-pricing-table thead th {
  color: var(--hh-text);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.hh-pricing-table td:first-child {
  color: var(--hh-muted);
}

.hh-pricing-table td:last-child {
  color: var(--hh-brand-orange);
  font-weight: 600;
  white-space: nowrap;
}

.hh-pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hh-pricing-table--addons {
  margin-top: 0.5rem;
}

/* Land pricing sub-section */
.hh-pricing-land {
  background: rgba(0, 188, 212, 0.06);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}

.hh-pricing-land h4 {
  color: var(--hh-brand-teal);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.hh-pricing-land p {
  color: var(--hh-brand-orange);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0;
}

.hh-addons-heading {
  margin-top: 2rem !important;
  margin-bottom: 0.5rem !important;
  font-size: 1.1rem !important;
  color: var(--hh-text);
}

.hh-pricing-note {
  font-size: 0.9rem;
  color: var(--hh-muted);
  opacity: 0.8;
  margin-top: 1rem;
}

/* Pricing tiers (social media) */
.hh-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.hh-pricing-tier {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.hh-pricing-tier:hover {
  border-color: var(--hh-brand-orange);
}

.hh-pricing-tier h4 {
  color: var(--hh-text);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.hh-tier-platforms {
  color: var(--hh-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hh-tier-price {
  color: var(--hh-brand-orange);
  font-size: 1.3rem;
  font-weight: 700;
}

/* Coming Soon badge */
.hh-coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35, #FF8F00, #FF6B35);
  background-size: 200% 200%;
  animation: comingSoonPulse 2s ease-in-out infinite;
  color: #fff;
  padding: 0.75rem 2.5rem;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5), 0 0 60px rgba(255, 107, 53, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes comingSoonPulse {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5), 0 0 60px rgba(255, 107, 53, 0.2); }
  50% { background-position: 100% 50%; box-shadow: 0 4px 35px rgba(255, 107, 53, 0.7), 0 0 80px rgba(255, 107, 53, 0.3); }
}

.hh-pricing-coming-soon {
  text-align: center;
  border-color: rgba(255, 107, 53, 0.3);
}

.hh-pricing-coming-soon p {
  font-size: 1.1rem;
  color: var(--hh-muted);
}

.hh-link-arrow {
  color: var(--hh-brand-teal);
  text-decoration: none;
  font-weight: 500;
}

.hh-link-arrow::after {
  content: " \2192";
}

.hh-link-arrow:hover {
  color: var(--hh-brand-orange);
}

/* Sidebar */
.hh-service-sidebar {
  position: sticky;
  top: 100px;
}

.hh-sidebar-card {
  background: var(--hh-card-bg);
  border: 1px solid var(--hh-card-border);
  border-radius: var(--hh-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.hh-sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--hh-text);
}

.hh-sidebar-card p {
  font-size: 0.95rem;
  color: var(--hh-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Sidebar buttons — fix overlap on mobile */
.hh-sidebar-btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hh-sidebar-btn + .hh-sidebar-btn {
  margin-top: 0.5rem;
}

/* Related services grid */
.hh-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.hh-related-card {
  background: var(--hh-card-bg);
  border: 1px solid var(--hh-card-border);
  border-radius: var(--hh-radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: all var(--hh-fast);
}

.hh-related-card:hover {
  border-color: var(--hh-brand-orange);
  transform: translateY(-2px);
}

.hh-related-card h4 {
  color: var(--hh-text);
  margin-bottom: 0.5rem;
}

.hh-related-card p {
  color: var(--hh-brand-teal);
  font-size: 0.95rem;
}

/* Area pages */
.hh-area-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.hh-area-service-card {
  background: var(--hh-card-bg);
  border: 1px solid var(--hh-card-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  transition: all var(--hh-fast);
  text-align: center;
}

.hh-area-service-card:hover {
  border-color: var(--hh-brand-teal);
  transform: translateY(-2px);
}

.hh-area-service-card h4 {
  color: var(--hh-text);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.hh-area-service-card p {
  color: var(--hh-brand-orange);
  font-size: 0.9rem;
  margin: 0;
}

.hh-nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hh-area-nearby-link {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--hh-brand-teal);
  text-decoration: none;
  transition: all var(--hh-fast);
}

.hh-area-nearby-link:hover {
  background: rgba(0, 188, 212, 0.2);
  color: var(--hh-text);
}

.hh-map-embed {
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hh-card-border);
}

/* Alt section background */
.hh-section--alt {
  background: rgba(255, 255, 255, 0.02);
}

/* Responsive */
@media (max-width: 900px) {
  .hh-service-content {
    grid-template-columns: 1fr;
  }

  .hh-service-sidebar {
    position: static;
  }

  .hh-service-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .hh-pricing-tiers {
    grid-template-columns: 1fr;
  }

  .hh-pricing-table th,
  .hh-pricing-table td {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }
}
