/* Services Page Styles */

/* CTA Section Styles */
.block-buy {
    position: relative;
}

.wrapper {
    max-width: 71.25rem;
    margin-left: auto;
    margin-right: auto;
}

.block-buy__wrapper {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.2);
    color: #fff;
}

.block-buy__background {
    border-radius: 1.25rem;
    -webkit-mask-image: -webkit-radial-gradient(white,#000);
    mask-image: radial-gradient(white,#000);
}

.block-buy__heading {
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.block-buy__heading__title {
    font-weight: 600;
    overflow-wrap: break-word;
    font-size: 1.625rem;
    line-height: 2rem;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .block-buy__heading__title {
        font-size: 2.625rem;
        line-height: 3rem;
    }
}

.block-buy__heading__lead {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: rgba(255,255,255,.85);
    margin: 0;
}

@media screen and (min-width: 768px) {
    .block-buy__heading__lead {
        font-size: 1.625rem;
        line-height: 2.25rem;
        letter-spacing: -.03062rem;
    }
}

.block-buy__heading__action {
    margin-top: 2rem;
}

.button {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    line-height: 1.25;
    padding: .8125rem 1.5rem .8125rem;
    min-height: 3rem;
    font-weight: 600;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.02);
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    text-decoration: none;
}

.button:focus, .button:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.button:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.button:active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,.06);
}

.button--white {
    color: var(--color-primary);
    background-color: #fff;
}

.button--white:active, .button--white:focus, .button--white:hover {
    background-color: rgba(255,255,255,.85);
}

.hero-background {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.hero-background--fit-parent {
    height: 100%;
}

.hero-background__shape {
    position: absolute;
    will-change: transform;
    left: 0;
    top: 0;
}

.hero-background__shape__transform {
    position: absolute;
    will-change: transform;
    left: 0;
    top: 0;
}

.hero-background svg {
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    position: absolute;
}

.hero-background[data-theme=primary][data-layout=top] {
    background-image: -webkit-gradient(linear,left top,left bottom,from(#2E7BC5),color-stop(80%,#1A4D7F));
    background-image: linear-gradient(180deg,#2E7BC5 0,#1A4D7F 80%);
}

.hero-background[data-theme=primary] .hero-background__shape--fill1 {
    mix-blend-mode: multiply;
    opacity: .6;
}

.hero-background[data-theme=primary] .hero-background__shape--fill2 {
    mix-blend-mode: multiply;
    opacity: .4;
}

.hero-background[data-theme=primary] .hero-background__shape--fill3 {
    mix-blend-mode: screen;
    opacity: .3;
}

.hero-background[data-theme=primary] .hero-background__shape--stroke {
    mix-blend-mode: multiply;
}

.hero-background[data-theme=primary] .stroke {
    fill: none;
    stroke: #20B2AA;
    stroke-opacity: .4;
    stroke-width: 1.5;
}

@media (max-width: 768px) {
    .block-buy__wrapper {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero-background__shape {
        display: none;
    }
}

/* Service Page Hero Styles */
.service-hero {
    position: relative;
}

.service-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.service-hero__decorative {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(3rem);
    z-index: 2;
}

.service-hero__content {
    position: relative;
    z-index: 3;
}

/* Service Overview Section */
.service-overview {
    padding: 3rem 0;
}

.service-overview__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .service-overview__content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Service Benefits Grid */
.service-benefits {
    padding: 3rem 0;
}

.service-benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.service-benefit-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    border: 2px solid rgb(243, 244, 246);
    transition: all 0.3s;
}

.service-benefit-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(32, 178, 170, 0.2);
    transform: translateY(-0.25rem);
}

.service-benefit-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-dark));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-benefit-card__icon i {
    color: white;
    font-size: 1.25rem;
}

.service-benefit-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.service-benefit-card__description {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .service-benefit-card__description {
        font-size: 1rem;
    }
}

/* Service Process Steps */
.service-process {
    padding: 3rem 0;
}

.service-process__step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-process__step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.service-process__step-content {
    flex: 1;
}

.service-process__step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.service-process__step-description {
    color: #4b5563;
    line-height: 1.75;
}

