/* Services Page Styles */

.services-intro {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 850px;
    color: var(--text-white);
    margin-bottom: 30px;
}

.services-page-main {
    padding: 60px 0;
    min-height: 80vh;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

/* --- WHY US SECTION --- */
.why-us-section {
    background-color: var(--primary-black);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.why-us-header {
    margin-bottom: 64px;
    text-align: center;
}

.why-us-subtitle {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.why-us-subtitle .dash {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #FFA500;
    /* Yellow accent */
    vertical-align: middle;
    margin-left: 10px;
}

.why-us-title {
    font-family: 'Good Times', sans-serif;
    font-size: 48px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0px;
}

.why-us-grid {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-item {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.why-us-icon {
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.why-us-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Specific styling for the 24 icon to match mockup somewhat */
.icon-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-green);
    font-family: 'Good Times', sans-serif;
}

.why-us-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.why-us-item p {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    color: var(--text-gray-light);
    line-height: 1.6;
}

/* Vertical Divider */
.why-us-divider {
    width: 1px;
    height: 228px;
    background-color: var(--primary-blue);
    align-self: center;
}

.cta-bg-services .cta-text{
    width: 388px;
    font-family: "sora", sans-serif;
}

.cta-buttons{
    gap: 20px;
}

.cta-buttons .btn-blue {
    padding: 12px 103px;
}

.cta-subtitle {
    font-family: 'Sora', sans-serif;
 text-align: center;
}


/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        flex-direction: column;
        gap: 40px;
    }

    .why-us-divider {
        width: 100%;
        height: 1px;
    }

    .why-us-item {
        padding: 0;
    }

    .why-us-title {
        font-size: 24px;

    }

    h3 {
        font-size: 14px;
    }

    .cta-buttons {
        gap: 20px;
    }

    .cta-title {
        font-size: 24px;
        margin: 10px 30px;
    }

    .cta-subtitle {
        margin: 10px 0px;
       
    }

}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }


    .cta-buttons {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        display: block;
    }

}