/* Single Service Page Styles */

.single-service-hero {
    position: relative;
    width: 100%;
    height: 610px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.service-hero-title {
  color: #FFF;
  text-align: center;
  font-family: Golden;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 2.5px;
  margin: 0 0 35px 0;
}

.service-hero-desc {
  color: #FFF;
  text-align: center;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  margin: 0 auto 45px auto;
}

.service-hero-action {
    display: flex;
    justify-content: center;
}

.service-hero-action .btn-primary {
  border-radius: 900px;
  background: #F76A32;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  width: 246px;
  height: 60px;
  color: #FFF;
  text-align: center;
  font-family: Golden;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  justify-content: center;
  align-items: center;
  display: flex;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}

.service-hero-action .btn-primary:hover {
    background: #e05e2d;
}

/* Service Body */
.single-service-body {
    padding: 80px 0 0 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.intro-divider {
    margin-top: 130px;
    margin-bottom: 100px;
}
.service-content-col {
  color: #000;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 27px;
}
.service-content-col p strong{
    font-weight: 600;
}
.service-content-col h1,
.service-content-col h2,
.service-content-col h3,
.service-content-col h4,
.service-content-col h5,
.service-content-col h6 {
    color: #000;
    font-family: Outfit;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-content-col p {
    margin-bottom: 20px;
    margin-top: 0;
}

.service-content-col p:last-child {
    margin-bottom: 0;
}

/* Benefits Section */
.service-benefits-section {
    padding: 0 0 100px 0;
}

.service-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-heading {
  color: #000;
  text-align: center;
  font-family: Golden;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 2.5px;
  margin: 0 0 30px 0;
}

.benefits-subheading {
  color: #4C403A;
  text-align: center;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 1px;
  margin: 0;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 auto;
}

.s-benefit-card {
    background: #F69541;
    padding: 40px 85px;
    text-align: center;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 150px; /* Default */
}

/* Specific Border Radius for the 2x2 grid design */
.s-benefit-card:nth-child(4n+1) {
    border-radius: 0 150px;
}
.s-benefit-card:nth-child(4n+2) {
    border-radius: 150px 0;
}
.s-benefit-card:nth-child(4n+3) {
    border-radius: 150px 0;
}
.s-benefit-card:nth-child(4n+4) {
    border-radius: 0 150px;
}

.s-benefit-icon {
    margin-bottom: 18px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-benefit-icon svg {
    max-height: 100%;
    width: auto;
}

.s-benefit-title {
  color: #FFF;
  text-align: center;
  font-family: Outfit;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 2.2px;
  margin: 0 0 17px 0;
}

.s-benefit-desc {
  color: #FFF;
  text-align: center;
  font-family: Outfit;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  margin: 0 auto;
  width: 100%;
}

.s-benefit-desc p {
    margin: 0;
}

/* Pricing Section */
.service-pricing-section {
    position: relative;
    padding: 80px 0 100px 0;
    background: #F6F6F6;
    margin-bottom: 100px;
}

.service-pricing-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    opacity: 1; /* Adjust if watermark needs fading */
    width: 100%;
    max-width: 675px;
    display: flex;
    justify-content: center;
}

.service-pricing-bg img {
    max-width: 100%;
    height: auto;
}

.service-pricing-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-heading {
  color: #000;
  text-align: center;
  font-family: Golden;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 2.5px;
  margin: 0;
}

.service-pricing-list {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.s-pricing-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid #DCDCDC;
}

.s-pricing-item:last-child {
    border-bottom: 1px solid #DCDCDC;
}

.s-pricing-name {
    text-align: left;
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    margin: 0;
}

.s-pricing-duration {
    text-align: center;
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    margin: 0;
}

.s-pricing-price {
    text-align: right;
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    margin: 0;
}

/* Steps Section */
.service-steps-section {
    padding: 0 0 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: flex-start;
}

.s-step-card:nth-child(even) .s-step-image-wrap {
    margin-top: 190px; /* Offset the even images lower */
}

/* On the screenshot, card 1 and 3 are higher, 2 and 4 are lower */
.s-step-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.s-step-image {
    width: 100%;
    height: 366px;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.s-step-number {
  top: 20px;
  left: 20px;
  border-radius: 900px;
  background: #EFE5D3;
  width: 86px;
  height: 78px;
  color: #000;
  text-align: center;
  font-family: Golden;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding-top: 10px;
}

.s-step-text {
    color: #4C403A;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 27px;
}
.s-step-text p {
    margin: 0;
}
.single-service .home-gallery-section {
    background-color: #F3F0E7;
    margin-bottom: 140px;
}
.single-service .gallery-btn {
    border: 1px solid #F76A32;
    color: #F76A32;
}
@media screen and (max-width: 1279px) {
    .single-service-hero {
        height: 515px;
    }
    .service-hero-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    .service-hero-desc {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 35px;
    }
    .single-service-body {
        padding: 40px 0 0 0;
    }
    .service-content-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-content-col {
        font-size: 16px;
        line-height: 24px;
    }
    .intro-divider {
        margin-top: 80px;
        margin-bottom: 70px;
    }
    .benefits-heading {
        margin-bottom: 4px;
        font-size: 40px;
    }
    .service-benefits-header {
        margin-bottom: 25px;
    }
    .benefits-subheading {
        font-size: 18px;
    }
    .s-benefit-card {
        padding: 30px 20px;
    }
    /* Specific Border Radius for the 2x2 grid design */
    .s-benefit-card:nth-child(4n+1) {
        border-radius: 0 100px;
    }
    .s-benefit-card:nth-child(4n+2) {
        border-radius: 100px 0;
    }
    .s-benefit-card:nth-child(4n+3) {
        border-radius: 100px 0;
    }
    .s-benefit-card:nth-child(4n+4) {
        border-radius: 0 100px;
    }
    .s-benefit-icon {
        margin-bottom: 12px;
    }
    .s-benefit-title {
        font-size: 18px;
        margin-bottom: 11px;
    }
    .s-benefit-desc {
        font-size: 16px;
        line-height: 22px;
    }
    .service-benefits-section {
        padding: 0 0 50px 0;
    }
    .service-pricing-section {
        padding: 32px 0 50px 0;
        margin-bottom: 50px;
    }
    .service-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 100px;
    }
    .s-step-card:nth-child(2n) .s-step-image-wrap {
        margin-top: 0px;
    }
    .s-step-image-wrap {
        margin-bottom: 15px;
    }
    .s-step-text {
        font-size: 16px;
        line-height: 22px;
    }
    .service-steps-section {
        padding: 0 0 85px 0;
    }
    .single-service .home-gallery-section {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 726px) {
    .single-service-hero {
        height: 490px;
    }
    .service-hero-title {
        font-size: 27px;
    }
    .service-hero-desc {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 25px;
    }
    .service-hero-action .btn-primary {
        width: 219px;
        height: 50px;
        font-size: 20px;
    }
    .single-service-body {
        padding: 25px 0 0 0;
    }
    .service-content-col {
        font-size: 15px;
        line-height: 20px;
    }
    .intro-divider {
        margin-top: 70px;
        margin-bottom: 55px;
    }
    .benefits-heading {
       margin-bottom: 4px;
       font-size: 27px;
    }
    .benefits-subheading {
        font-size: 16px;
        line-height: 24px;
    }
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    .s-benefit-card {
        padding: 20px 30px;
    }
    .s-benefit-icon {
        width: 58px;
    }
    .s-benefit-desc {
        font-size: 15px;
        line-height: 20px;
    }
    .service-pricing-header {
        margin-bottom: 0;
    }
    .pricing-heading {
        font-size: 27px;
    }
    .s-pricing-item {
        padding: 24px 0;
    }
    .s-pricing-name {
        font-size: 16px;
        width: 180px;
    }
    .s-pricing-duration {
        font-size: 16px;
        width: fit-content;
        margin-left: auto;
    }
    .s-pricing-price {
        font-size: 16px;
        width: fit-content;
        margin-left: auto;
    }
    .service-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 14px;
    }
    .s-step-image {
        height: 195px;
    }
    .s-step-image-wrap {
        margin-bottom: 10px;
    }
    .s-step-number {
        width: 45px;
        height: 45px;
        font-size: 25px;
        padding-top: 3px;
        top: 10px;
        left: 10px;
    }
    .s-step-text {
        font-size: 15px;
        line-height: 20px;
    }
}