/* 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 {
    margin: 0 100px;
}

.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: 60px;
    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: 32px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.why-us-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-item {
    flex: 1;
    padding: 0 40px;
    text-align: center;
}

.why-us-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* 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: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* Vertical Divider */
.why-us-divider {
    width: 1px;
    height: 150px;
    background-color: var(--primary-blue);
    align-self: 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;
    }

    .service-container {
        margin: 0 30px;
    }

    .cta-buttons {
        margin: 0 30px;
    }

    .cta-title {
        font-size: 24px;
        margin: 10px 30px;
    }

    .cta-subtitle {
        margin: 10px 30px;
    }

}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }


    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        display: block;
    }

}