/* ./asset/css/home/alcohol-treatment.css */

/* Uses site :root variables in your global CSS; fallback colors included */
:root {
  --brand: #ffc20f;
  --blue: #1e3a8a;
  --slate-900: #0f172a;
}

/* container helper if not present */
.containerr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: var(--slate-900);
}

/* Main section */
.athena-treatment .treatment-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Responsive */
@media (max-width: 980px) {
  .athena-treatment .treatment-inner {
    grid-template-columns: 1fr;
  }

  .treatment-sidebar {
    order: 2;
  }
}

/* Main column */
.treatment-main .treatment-title {
  color: var(--blue);
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
}

.treatment-main .lead {
  color: #334155;
  line-height: 1.7;
  margin-bottom: 18px;
}

.btn-ghost {
  display: inline-block;
  background: #2f3b78;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 28px;
}

.section-heading {
  color: var(--blue);
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 20px;
}

.treatment-card {
  background: transparent;
  margin-bottom: 18px;
}

.treatment-card h3 {
  color: #1e3a8a;
  margin: 0 0 6px;
  font-size: 18px;
}

.treatment-card p {
  color: #334155;
  margin: 0;
}

/* Bottom row: callout + video */
.bottom-row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  margin-top: 30px;
  align-items: start;
}

@media (max-width: 980px) {
  .bottom-row {
    grid-template-columns: 1fr;
  }
}

.callout {
  background: var(--blue);
  color: #fff;
  padding: 22px;
  border-radius: 6px;
}

.callout h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.callout p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: var(--brand);
  color: #0f172a;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

/* Video embed */
.video-wrap {
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Sidebar */
.treatment-sidebar {
    display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;     /* makes it stay in view */
  top: 20px;            /* distance from top of viewport */
  align-self: start;    /* ensures sticky works inside grid */
  height: fit-content;  /* avoids stretching */
}

.cta-phone {
  background: #1e73b8;
  color: #fff;
  padding: 18px;
  border-radius: 6px;
  text-align: left;
}

.cta-phone h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}

.cta-phone p {
  margin: 0 0 12px;
  font-size: 14px;
}

.btn-phone {
  display: inline-block;
  background: #2f3b78;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.faq-box {
  background: #f1f5f9;
  color: #334155;
  padding: 14px;
  border-radius: 6px;
}

.faq-box h5 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #1e3a8a;
}

.faq-box ul {
  padding-left: 16px;
  margin: 0;
  list-style: disc;
}

.muted-box {
  background: #f7fafc;
}

.trust-badge {
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 10px 0;
}
.trust-badge img {
  width: 120px;
  height: auto;
}
