/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 0;
    z-index: 1;
}

.services-one__shape-1 {
    position: absolute;
    width: 481px;
    height: 448px;
    left: -221px;
    top: 50px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.services-one__shape-2 {
    position: absolute;
    width: 481px;
    height: 448px;
    right: -125px;
    bottom: -100px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.services-one__single {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    border-radius: 20px;
    padding: 30px 25px 37px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.services-one__single-shape-1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transform: translateX(-50%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-one__single:hover .services-one__single-shape-1 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-one__single-shape-2 {
    position: absolute;
    top: -97px;
    right: -60px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-one__single:hover .services-one__single-shape-2 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-one__single-shape-3 {
    position: absolute;
    bottom: -57px;
    right: -123px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-one__single:hover .services-one__single-shape-3 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}


.services-one__single::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: var(--gorent-base);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-one__single:hover::after {
    background-color: var(--gorent-black);
}

.services-one__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gorent-base);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-one__single:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-one__icon {
    position: relative;
    display: inline-block;
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--gorent-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
    transform: scale(0.9);
    color: var(--gorent-black);
}

.services-one__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 49px;
    margin-bottom: 6px;
}

.services-one__title a {
    color: var(--gorent-base);
}

.services-one__single:hover .services-one__title a {
    color: var(--gorent-black);
}

.services-one__text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: rgba(var(--gorent-white-rgb), .70);
}

.services-one__single:hover .services-one__text {
    color: var(--gorent-black);
}

.services-one__count {
    position: absolute;
    top: 45%;
    right: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    transform: translateY(-50%);
    z-index: 1;
}

.services-one__count::before {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    font-family: var(--gorent-font-two);
    counter-increment: count;
    content: "0"counter(count);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__count::before {
    color: var(--gorent-base);
}

.services-one__count:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    background-color: var(--gorent-black);
    opacity: 0;
    transform: translateX(55px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: -1;
}

.services-one__single:hover .services-one__count:after {
    opacity: 1;
    transform: translateX(0px);
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-two__shape-1 {
    position: absolute;
    width: 481px;
    height: 448px;
    left: -221px;
    top: 50px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.services-two__shape-2 {
    position: absolute;
    width: 481px;
    height: 448px;
    right: -125px;
    bottom: -100px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.services-two__single {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    border-radius: 20px;
    padding: 30px 25px 37px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.services-two__single-shape-1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transform: translateX(-50%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-two__single:hover .services-two__single-shape-1 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-two__single-shape-2 {
    position: absolute;
    top: -104px;
    right: -60px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-two__single:hover .services-two__single-shape-2 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-two__single-shape-3 {
    position: absolute;
    bottom: -57px;
    right: -123px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-two__single:hover .services-two__single-shape-3 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}


.services-two__single::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: var(--gorent-base);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-two__single:hover::after {
    background-color: var(--gorent-black);
}

.services-two__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gorent-base);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-two__single:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: rgba(var(--gorent-white-rgb), .08);
    border-radius: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: -30px;
    margin-left: -25px;
    z-index: 1;
}

.services-two__icon:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid rgba(var(--gorent-white-rgb), .15);
    border-radius: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: -1;
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--gorent-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-two__single:hover .services-two__icon span {
    transform: scale(0.9);
    color: var(--gorent-black);
}

.services-two__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 49px;
    margin-bottom: 6px;
}

.services-two__title a {
    color: var(--gorent-base);
}

.services-two__single:hover .services-two__title a {
    color: var(--gorent-black);
}

.services-two__text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: rgba(var(--gorent-white-rgb), .70);
}

.services-two__single:hover .services-two__text {
    color: var(--gorent-black);
}

.services-two__count {
    position: absolute;
    top: 45%;
    right: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    transform: translateY(-50%);
    z-index: 1;
}

.services-two__count::before {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    font-family: var(--gorent-font-two);
    counter-increment: count;
    content: "0"counter(count);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__single:hover .services-two__count::before {
    color: var(--gorent-base);
}

.services-two__count:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    background-color: var(--gorent-black);
    opacity: 0;
    transform: translateX(55px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: -1;
}

.services-two__single:hover .services-two__count:after {
    opacity: 1;
    transform: translateX(0px);
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
/* Combined Service Box - Made bigger */
.combined-service-box {
    background: var(--gorent-white);
    padding: 50px 40px; /* Increased vertical padding */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(var(--gorent-base-rgb), 0.1);
    min-height: 400px; /* Ensure minimum height */
    margin-bottom: 80px; /* Space after the entire section */
}

/* Service Types Column */
.service-types-column {
    padding-right: 30px;
    border-right: 2px solid rgba(var(--gorent-base-rgb), 0.1);
    height: 100%;
}

.column-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gorent-base);
}

.service-type-item {
    margin-bottom: 25px;
}

.service-type-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.service-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-bullet-primary {
    background: var(--gorent-base);
}

.service-bullet-secondary {
    background: var(--gorent-black);
}

.service-type-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gorent-black);
    margin: 0;
}

.service-options-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 22px;
}

.service-options-list li {
    position: relative;
    padding: 6px 0 6px 18px;
    color: var(--gorent-black);
    font-size: 14px;
}

.service-options-list li:before {
    content: "•";
    color: var(--gorent-base);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Steps Column */
.steps-column {
    padding-left: 30px;
    height: 100%;
}

.compact-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.compact-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(var(--gorent-base-rgb), 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--gorent-base);
    transition: all 0.3s ease;
    min-height: 70px;
}

.compact-step:hover {
    background: rgba(var(--gorent-base-rgb), 0.1);
    transform: translateX(3px);
}

/* Smaller 5th step */
.step-5-small {
    grid-column: 1;
    min-height: 60px; /* Smaller than other steps */
    padding: 12px 15px; /* Less padding */
}

.button-step {
    grid-column: 2;
    background: transparent;
    border-left: 3px solid transparent;
    align-items: center;
    justify-content: center;
    padding: 12px;
    min-height: 60px; /* Match the smaller step 5 height */
}

.button-step:hover {
    background: transparent;
    transform: none;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gorent-base);
    color: var(--gorent-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.compact-step:hover .step-number {
    background: var(--gorent-black);
    color: var(--gorent-white);
}

.step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.step-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gorent-black);
    margin: 0;
    line-height: 1.3;
}

/* Smaller text for step 5 */
.step-5-small .step-content h5 {
    font-size: 13px;
}

.needs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.need-tag {
    background: rgba(var(--gorent-base-rgb), 0.1);
    color: var(--gorent-black);
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.1;
}

/* Button styling */
.button-step .step-content {
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gorent-base);
    color: var(--gorent-black);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--gorent-base);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    white-space: nowrap;
    margin: 0;
}

.thm-btn:hover {
    background: var(--gorent-black);
    color: var(--gorent-white);
    border-color: var(--gorent-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.thm-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* SECTION SPACING - Proper space after entire section */
.services-three {
    padding: 80px 0 100px; /* Good bottom padding */
    position: relative;
}

/* Responsive Design */
@media (min-width: 992px) {
    .combined-service-box {
        padding: 60px 50px; /* Even bigger on desktop */
        min-height: 450px;
    }

    .services-three {
        padding: 80px 0 120px; /* More space on desktop */
    }
}

@media (max-width: 991px) {
    .combined-service-box {
        padding: 40px 30px;
        margin-bottom: 70px;
    }

    .service-types-column {
        padding-right: 0;
        padding-bottom: 30px;
        border-right: none;
        border-bottom: 2px solid rgba(var(--gorent-base-rgb), 0.1);
        margin-bottom: 30px;
    }

    .steps-column {
        padding-left: 0;
    }

    /* On tablets, keep step 5 and button side by side */
    .step-5-small,
    .button-step {
        grid-column: auto;
    }

    .services-three {
        padding: 70px 0 90px;
    }
}

@media (max-width: 768px) {
    .combined-service-box {
        padding: 30px 25px;
        margin-bottom: 60px;
    }

    .column-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .service-type-header h4 {
        font-size: 15px;
    }

    .service-options-list li {
        font-size: 13px;
        padding: 5px 0 5px 16px;
    }

    .compact-step {
        padding: 12px;
        min-height: 65px;
    }

    .step-5-small {
        padding: 10px 12px;
        min-height: 55px;
    }

    .button-step {
        padding: 10px;
        min-height: 55px;
    }

    .step-content h5 {
        font-size: 13px;
    }

    .step-5-small .step-content h5 {
        font-size: 12px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .thm-btn {
        padding: 9px 18px;
        font-size: 12px;
    }

    .services-three {
        padding: 60px 0 80px;
    }
}

@media (max-width: 576px) {
    .combined-service-box {
        padding: 25px 20px;
        margin-bottom: 50px;
    }

    .compact-steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* On mobile, stack step 5 and button */
    .step-5-small,
    .button-step {
        grid-column: 1;
    }

    .button-step {
        margin-top: 10px;
    }

    .thm-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    .services-three {
        padding: 50px 0 70px;
    }
}

/* Additional space for very small devices */
@media (max-width: 375px) {
    .services-three {
        padding: 40px 0 60px;
    }

    .combined-service-box {
        margin-bottom: 40px;
    }
}

.services-three {
    position: relative;
    display: block;
    padding: 120px 0 19px;
    counter-reset: count;
    z-index: 1;
}

.services-three .section-title {
    margin-bottom: 83px;
}

.services-three__single {
    position: relative;
    display: block;
    text-align: center;
    padding: 90px 25px 45px;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: var(--gorent-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 101px;
    z-index: 1;
}

.services-three__single:hover {
    transform: translateY(-10px);
}

.services-three__icon {
    position: relative;
    height: 90px;
    width: 90px;
    margin: -135px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    z-index: 2;
}

.services-three__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--gorent-black);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-three__single:hover .services-three__icon::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--gorent-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
    transform: scale(0.9);
    color: var(--gorent-base);
}

.services-three__content {
    position: relative;
    display: block;
    margin-top: 23px;
    margin-bottom: 24px;
}

.services-three__title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-three__title a {
    color: var(--gorent-black);
}

.services-three__title a:hover {
    color: var(--gorent-base);
}

.services-three__count {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto -71px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50px;
    z-index: 1;
}

.services-three__count::before {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    font-family: var(--gorent-font-two);
    counter-increment: count;
    content: "0"counter(count);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__count::before {
    color: var(--gorent-base);
}

.services-three__count:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--gorent-black);
    transform: scaleY(0.7) rotateY(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-three__single:hover .services-three__count:after {
    transform: scaleY(1.0) rotateY(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
    padding: 90px 0 45px;
}




/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/