/* ============================================================
   services-page.css
   Page-specific styles for services.html ONLY.
   Header (.site-header, .logo, .main-nav) and footer (.footer,
   .footer-content, .social-btn, etc.) are already defined in
   your main style.css — nothing here touches those.
   Just link this file after style.css in services.html:
   <link rel="stylesheet" href="{% static 'css/style.css' %}">
   <link rel="stylesheet" href="{% static 'css/services-page.css' %}">
============================================================ */

/* Safety net so no section gap ever shows plain white */
body {
  background-color: var(--alabaster-grey);
}

/* ============================================================
   SERVICES PAGE HERO
============================================================ */
.services-hero {
  background-color: var(--dusk-blue);
  padding: 100px 8% 80px;
  text-align: left;
  border-bottom: 5px solid black;
}

.services-hero-label {
  display: inline-block;
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.2),
    0 2px 4px rgba(0,0,0,0.3);
}

.services-hero-label.small {
  font-size: 1.6rem;
}

.services-hero h1 {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.services-hero p {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.7rem;
  color: var(--alabaster-grey);
  max-width: 800px;
  line-height: 1.4;
}

/* ============================================================
   SERVICE DETAIL SECTIONS (alternating layout)
   Two distinct light tones so alternation is actually visible.
============================================================ */
.service-detail-section {
  padding: 80px 8%;
  background: var(--alabaster-grey);
}

.service-detail-section.alt {
  background: #d3dae3; /* soft slate-blue, one visible step down from alabaster */
}

.service-detail {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.service-detail.reverse {
  flex-direction: row-reverse;
}

/* ---------- Image framing — larger, softer, more professional ---------- */
.service-detail-img-wrap {
  flex-shrink: 0;
  width: 380px;
  height: 340px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(10, 17, 40, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-detail-content {
  flex: 1;
  min-width: 0;
}

.service-eyebrow {
  display: inline-block;
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dusk-blue);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 10px;
}

.service-detail-content h2 {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--prussian-blue);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 20px;
}
/* ---------- Service facts list — CSS-only checkmarks, no external library ---------- */
.service-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-facts li {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.45rem;
  color: #333;
  position: relative;
  padding-left: 1.8em;
}

.service-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.65em;
  height: 0.35em;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .service-detail,
  .service-detail.reverse {
    flex-direction: column;
    text-align: center;
  }
  .service-detail-img-wrap {
    width: 100%;
    max-width: 380px;
    height: 280px;
    margin: 0 auto;
  }
  .service-facts li {
    text-align: left;
  }
}

/* ============================================================
   COST ESTIMATOR
============================================================ */
.estimator-section {
  background: var(--lavender-grey);
  padding: 90px 8%;
  border-top: 5px solid black;
  border-bottom: 5px solid black;
}

.estimator-header {
  text-align: center;
  margin-bottom: 50px;
}

.estimator-header h2 {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.estimator-header p {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.3rem;
  color: var(--lavender-grey);
  max-width: 700px;
  margin: 0 auto;
}

.estimator-box {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  padding: 40px;
  flex-wrap: wrap;
}

.estimator-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.estimator-form label {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--prussian-blue);
  margin-top: 10px;
}

.estimator-form input[type="number"] {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.2rem;
  padding: 8px 12px;
  border: 2px solid var(--dusk-blue);
  border-radius: 8px;
  width: 100%;
  max-width: 200px;
}

.estimator-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.estimator-checks label {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  margin-top: 0;
}

.estimator-checks input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.estimator-form .btn {
  margin-top: 24px;
  cursor: pointer;
  align-self: flex-start;
  font-size: 1.3rem;
}

/* Calculate Estimate button — sits inside the estimator form on white */
#est-calc-btn {
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

#est-calc-btn:hover {
  transform: scale(1.05);
  background: var(--gold);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.estimator-result {
  flex: 1;
  min-width: 240px;
  background: var(--alabaster-grey);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.estimator-result-label {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--prussian-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.estimator-result-value {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--prussian-blue);
  margin: 10px 0;
}

.estimator-note {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 90px 8%;
  background: var(--alabaster-grey);
  border-top: 5px solid black;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(10, 17, 40, 0.12);
  padding: 18px 24px;
}

.faq-item summary {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--prussian-blue);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: '+ ';
  color: var(--gold);
  font-weight: 900;
}

.faq-item[open] summary::before {
  content: '– ';
}

.faq-item p {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-top: 14px;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: var(--lavender-grey);
  padding: 80px;
  text-align: center;
  border-top: 2px solid black;
}

.cta-banner h2 {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  font-family: 'FixedExcelsiorSys', sans-serif;
  font-size: 1.3rem;
  color: var(--alabaster-grey);
  max-width: 650px;
  margin: 0 auto 30px;
}

.cta-banner .btn {
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cta-banner .btn:hover {
  transform: scale(1.05);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
}
