/* Service Page — Specific Styles */

/* Hero banner above form */
.service-hero {
  background: linear-gradient(135deg, #c62828 0%, #a31616 100%);
  color: #fff;
  text-align: center;
  padding: 48px 20px 44px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
}

.service-hero-icon {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
}

.service-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.service-hero p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 18px;
  line-height: 1.6;
}

.service-hero a {
  color: #ffe0e0;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-hero a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .service-hero {
    padding: 36px 16px 32px;
  }
  .service-hero h1 {
    font-size: 24px;
  }
  .service-hero p {
    font-size: 14px;
  }
}

.service-form {
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 40px 20px;
  max-width: 800px;
  margin: 40px auto;
}

.service-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--brand-red);
}

/* Contact form structure is handled in common.css */

.year-select {
  display: none; /* Hidden by default, toggled by JS */
}

@media (max-width: 768px) {
  .service-form {
    padding: 20px 15px;
    margin: 20px auto;
  }
}
