.service-detail-section{
  background:#FAF7F2; 
  padding: calc(var(--header-height,120px) + 40px) 20px 80px;
}

.service-detail-container{
  max-width:1040px;              
  margin:0 auto;
}

.service-detail-header{
  margin-bottom:40px;
}

.service-detail-title{
  font-family:"Etna", sans-serif;   
  font-size:42px;
  margin-bottom:8px;
  color:#2B2B2B;
}

.service-detail-subtitle{
  font-family:'Raleway', sans-serif;
  font-size:16px;
  letter-spacing:0.3px;
  color:#2B2B2B;
}

.service-card{
  max-width:880px;               
  border-radius:28px;
  padding:42px;
  margin-bottom:30px;
  color:#2B2B2B;
  box-shadow:0 18px 40px rgba(0,0,0,0.08); 
}


.service-card-title{
  font-family:"Etna", sans-serif;
  font-size:24px;
  margin-bottom:24px;
}


.service-block{
  margin-bottom:24px;
}

.service-block strong{
  font-family:"Etna", sans-serif;
  font-weight:600;
  display:block;
  margin-bottom:6px;
  position:relative;
}


.service-block strong::after{
  content:"";
  display:block;
  width:36px;
  height:3px;
  background:#006D6F; 
  margin-top:6px;
  border-radius:2px;
}

.service-card p,
.service-card li{
  font-family:'Raleway', sans-serif;
  font-size:15px;
  line-height:1.65;
}


.service-card ul{
  margin:12px 0 0 18px;
}


.service-divider{
  height:1px;
  background:rgba(0,0,0,0.22);
  margin:28px 0;
}

.service-price{
  font-family:"Etna", sans-serif;
  font-size:22px;
  margin-top:14px;
}

.service-actions{
  display:flex;
  gap:18px;
  margin-top:34px;
  padding-top:26px;
  border-top:1px solid rgba(0,0,0,0.15); 
  flex-wrap:wrap;
}

.service-btn{
  font-family:"Etna", sans-serif;
  padding:12px 28px;
  border-radius:30px;
  border:2px solid #006D6F;
  color:#006D6F;
  text-decoration:none;
  font-size:14px;
  background-color: #e2dcde;
  transition:all 0.3s ease;
}

.service-btn.primary{
  background:#006D6F;
  color:#FAF7F2;
}

.service-btn:hover{
  transform:translateY(-2px);
}

.service-btn.primary:hover{
  background:#005a5c;
}


@media(max-width:600px){

  .service-detail-title{
    font-size:30px;
  }

  .service-card{
    padding:26px;
  }

  .service-card-title{
    font-size:20px;
  }

  .service-btn{
    font-size:13px;
    padding:10px 22px;
  }
}


.other-services-section{
  background:#faf8f1;
  padding:70px 20px 50px;
}

.other-services-container{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.other-services-title{
  font-family:"Etna", sans-serif;
  font-size:32px;
  margin-bottom:42px;
}

/* GRID */
.other-services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:36px;
  justify-items:center;
}

/* CARD */
.other-service-card{
  text-align:center;
  max-width:320px;
}

/* IMAGE */
.other-service-image img{
  width:100%;
  border-radius:18px;
  display:block;
  transition:all 0.35s ease;
}

.other-service-image:hover img{
  transform:translateY(-6px);
  box-shadow:0 14px 32px rgba(0,0,0,0.18);
}

/* DESCRIPTION */
.other-service-desc{
  margin:16px 0 18px;
  font-size:12px;
  letter-spacing:1px;
  line-height:1.45;
  color:#333;
  text-transform:uppercase;
  font-family:'Raleway', sans-serif;
}

/* VIEW MORE BUTTON */
.other-view-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 22px;
  border:2px solid #000;
  border-radius:999px;
  text-decoration:none;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:1px;
  color:#000;
  transition:all 0.3s ease;
}

.other-view-btn .circle{
  width:20px;
  height:20px;
  border:2px solid #000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  line-height:1;
}

.other-view-btn:hover{
  background:#000;
  color:#fff;
}

.other-view-btn:hover .circle{
  border-color:#fff;
}

/* MOBILE */
@media(max-width:900px){
  .other-services-grid{
    grid-template-columns:1fr;
  }
}
