:root {
  --maroon: #79002b;
  --dark: #464747;
  --red: #ab0611;
  --text: #334155;
  --navy: #1e293b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: #fff;
}

h1, h2, h3 {
  font-family: Roboto, sans-serif;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 .5em;
}

a { color: inherit; }
p { line-height: 1.6; }

/* Top bar */
.topbar {
  background: var(--maroon);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Hero image banner */
.hero-banner {
  position: relative;
  background: #b9b9b9;
}
.hero-banner img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.75);
}
.brand-tagline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.brand-tagline strong {
  display: block;
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}
.brand-tagline span { font-size: 1rem; }

/* Dark hero copy */
.hero-copy {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 56px 20px 70px;
}
.hero-copy h1 {
  color: #fff;
  font-size: 2.4rem;
  max-width: 780px;
  margin: 0 auto .6em;
}
.hero-copy p {
  max-width: 700px;
  margin: 0 auto 24px;
  opacity: .92;
}
.phone-pill {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
}

/* Form section */
.form-section {
  background: #fff;
  padding: 40px 20px 56px;
  margin-top: -40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.06);
}
.form-section form { display: flex; flex-direction: column; }
.form-section label {
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0 6px;
}
.form-section input,
.form-section select,
.form-section textarea {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  font-size: 1rem;
  font-family: inherit;
  color: #1e293b;
}
.form-section textarea { resize: vertical; min-height: 90px; }
.form-section button {
  margin-top: 20px;
  align-self: flex-start;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
}
.form-section button:hover { background: #8a050e; }
.form-note { margin-top: 14px; font-size: .9rem; background: #f0fdf4; color: #166534; padding: 10px; border-radius: 4px; }
.form-note.form-error { background: #fef2f2; color: #991b1b; }
.form-section button:disabled { opacity: .7; cursor: not-allowed; }

/* Services */
.services { max-width: 1140px; margin: 0 auto; padding: 56px 20px 20px; text-align: center; }
.services h2 { font-size: 1.9rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 32px;
  text-align: center;
}
.service-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.1);
  padding-bottom: 20px;
}
.thumb { width: 100%; height: 160px; object-fit: cover; display: block; }
.service-card h3 { font-size: 1.25rem; margin: 18px 16px 10px; }
.service-card p { font-size: .95rem; padding: 0 20px; color: #52525b; }

/* About text block */
.about-text { max-width: 1140px; margin: 0 auto; padding: 40px 20px; }
.about-text h2 { font-size: 1.6rem; }
.about-text p { margin-bottom: 20px; }

/* Service tables */
.service-tables { max-width: 1140px; margin: 0 auto; padding: 20px 20px 10px; }
.service-tables h2 { font-size: 1.3rem; margin-top: 40px; }
.service-tables table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.service-tables th, .service-tables td { border: 1px solid #e2e8f0; padding: 12px 14px; text-align: center; }
.service-tables th { background: #f1f5f9; font-weight: 700; }
.service-tables tr:nth-child(even) td { background: #f8fafc; }

.centre-no { max-width: 1140px; margin: 30px auto 0; padding: 0 20px; font-size: 1.4rem; }

/* FAQ */
.faq-dark { background: var(--dark); color: #fff; padding: 50px 20px; text-align: center; }
.faq-dark h2 { color: #fff; font-size: 1.9rem; }
.faq-dark > p { max-width: 700px; margin: 0 auto 30px; opacity: .9; }
.accordion { max-width: 900px; margin: 0 auto; text-align: left; }
.accordion-item { margin-bottom: 4px; }
.accordion-toggle {
  width: 100%;
  text-align: left;
  background: #d9d9d9;
  border: none;
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  border-radius: 3px;
}
.accordion-panel {
  display: none;
  background: #fff;
  color: #444;
  padding: 18px 22px;
}
.accordion-item.open .accordion-panel { display: block; }

/* Footer */
footer {
  background: #111;
  color: #cbd5e1;
  padding: 34px 20px;
  font-size: .88rem;
}
footer h4 { color: #4da3ff; font-family: inherit; font-weight: 700; margin: 18px 0 6px; }
footer p { max-width: 1140px; margin: 0 auto; }

/* Sticky call button */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

@media (max-width: 700px) {
  .hero-copy h1 { font-size: 1.7rem; }
  .form-section { margin-top: 0; border-radius: 0; box-shadow: none; }
}
