/* ==========================================================
   Services listing + detail
   ========================================================== */
.services-page{ background: var(--cream); }

/* ---------- Intro (listing) ---------- */
.services-intro{
  position: relative;
  background: var(--navy-dark);
  padding: 5rem 0;
  overflow: hidden;
}
.services-intro-bg{
  position: absolute;
  inset: 0;
  background-image: url("../images/columns.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50% auto;
  pointer-events: none;
}
.services-intro-title{
  font-family: var(--font-serif);
  color: #fdfbf7;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.25;
}
.services-intro-lead{
  color: #c3cad4;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 1.5rem;
  max-width: 640px;
}

/* ---------- Service cards (grid + related) ---------- */
.services-grid-section{
  background: var(--cream);
  padding: 5rem 0;
}
.service-card{
  height: 100%;
  background: #fff;
  border-radius: 6px;
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.service-card i{
  color: var(--gold);
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
}
.service-card .service-icon-image{
  height: 1.9rem;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.service-card h3{
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.service-card p{
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-card .learn-more{
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.service-card .learn-more i{
  font-size: 0.7rem;
  margin: 0 0 0 4px;
}

/* ==========================================================
   Service detail
   ========================================================== */
.service-hero{
  background: var(--navy-dark);
  padding: 3.5rem 0 3rem;
}

.service-title{
  font-family: var(--font-serif);
  color: #fdfbf7;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: 780px;
  margin: 0.5rem 0 1rem;
}
.service-lead{
  color: #c3cad4;
  font-weight: 300;
  line-height: 1.8;
  max-width: 640px;
}

.service-image{
  margin-top: -1.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.service-image img{
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.service-section{
  background: var(--cream);
  padding: 4rem 0 5rem;
}
.service-body{
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.9;
}
.service-body p{ margin-bottom: 1.5rem; font-weight: 300; }
.service-body h2{
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1.1rem;
  color: var(--text-dark);
}
.service-body h2:first-child{ margin-top: 0; }

.check-list{
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.check-list li{
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 300;
}
.check-list li:last-child{ border-bottom: none; }
.check-list i{ color: var(--gold); margin-right: 0.6rem; }

.service-sidebar{
  background: #fff;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: sticky;
  top: 100px;
}
.service-sidebar h3{
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.benefit-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-list li{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.benefit-list i{
  color: var(--gold);
  width: 20px;
  text-align: center;
}
.sidebar-divider{
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 1.25rem 0;
}
.sidebar-note{
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.related-services-section{
  background: var(--cream);
  padding: 4.5rem 0;    padding-top: 0px;
}
.related-title{
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.related-services-section .service-card{ background: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px){
  .services-intro-title{ font-size: 2.1rem; }
  .services-intro-bg{ opacity: 0.5; }
  .service-title{ font-size: 1.9rem; }
  .service-image{ margin-top: 0; }
  .service-sidebar{ position: static; }
}
@media (max-width: 650.98px){
  .services-intro-title {
        font-size: 1.6rem;
    }
    .services-intro { 
    padding: 8rem 0 2rem;}
    .services-grid-section {
    padding: 3rem 0;
}
    .site-header {
        padding: 0rem 0;}
}
