﻿.services-section {
    padding: 4rem 0 0 0;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services-header,
.additional-services-header {
    text-align: center;
    margin-bottom: 64px;
}

    .services-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 2.5rem;
        font-weight: bold;
        color: #1f2937;
        margin-bottom: 1.5rem;
    }

    .services-header .divider {
        width: 96px;
        height: 4px;
        margin: 0 auto 1.5rem;
        background: #f9e905;
        border-radius: 2px;
    }

    .services-header p {
        font-family: 'Montserrat', sans-serif;
        max-width: 64rem !important;
        margin: 0 auto;
        font-size: 1.25rem;
        color: #4b5563;
        line-height: 1.75rem;
    }

    .additional-services-header h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 2.2rem;
        font-weight: bold;
        color: #1f2937;
        margin-bottom: 1.5rem;
    }

    .additional-services-header p {
        font-family: 'Montserrat', sans-serif;
        max-width: 768px;
        margin: 0 auto;
        font-size: 1.25rem;
        color: #4b5563;
        line-height: 1.75rem;
    }

.service-btn {
    border: 2px solid #2563eb;
    color: #2563eb;
    border-radius: 0.75rem;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out !important;
    width: 100%;
    margin-top: 24px;
    padding: 12px;
}

    .service-btn:hover {
        transform: translateY(-2px);
        background: #e0e7ff;
        transition: all 0.3s ease-in-out !important;
        color: #2563eb;
    }

.additional-services {
    display: grid;
    gap: 32px;
}

@media (min-width: 1024px) {
    .additional-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 24px;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    transition: box-shadow 0.3s ease-in-out;
}

    .service-card:hover {
        box-shadow: 0 0 80px rgba(22, 163, 74, 0.3);
    }

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4CAF50;
}

    .icon-wrapper i {
        color: #fff;
        font-size: 24px;
    }

.service-card.small {
    font-family: 'Montserrat', sans-serif;
    padding: 20px 16px;
    color: #4b5563;
    line-height: 1.5rem;
}

    .service-card.small h4 {
        text-align: start;
        font-size: 1.25rem;
        font-weight: bold;
        color: #1f2937;
    }

.icon-title-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-description-list {
    margin-top: 12px;
    padding-left: 20px;
    list-style-type: disc;
    color: #4b5563;
}

    .service-description-list li {
        margin-bottom: 6px;
    }

/* CTA */
.cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-box {
    background-color: #ffffff;
    border-radius: 12px !important;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.3);
    border: 1px solid #f3f4f6;
    max-width: 768px;
    margin: 0 auto;
}

    .cta-box h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5rem;
        font-weight: bold;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .cta-box p {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.125rem;
        color: #4b5563;
        margin-bottom: 2rem;
    }

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-outline {
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out !important;
}

    .btn-outline:hover {
        transform: translateY(-2px);
        background: #e4ffe0;
        transition: all 0.3s ease-in-out !important;
        color: #4CAF50;
    }
