/* Premium "What We Offer" Section Styles */

.services-overview-section {
    padding: 5rem 0;
    background: white;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--slate-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-mint));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-overview-card:hover::before {
    transform: translateX(0);
}

.service-overview-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.15);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
    line-height: 1;
}

.service-overview-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-overview-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate-600);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Premium CTA Section Styles */

.cta-section {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: visible;
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none;
}

.cta-bg-shapes {
    display: none;
}

.shape {
    display: none;
}

.shape-1 {
    display: none;
}

.shape-2 {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
}

.cta-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.93);
    max-width: 600px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0;
}

/* Premium Button Styles for CTA */
.btn-white {
    background-color: white;
    color: #0D9488;
    font-weight: 700;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(5, 150, 105, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-white:hover::before {
    opacity: 1;
}

.btn-white:hover {
    background-color: #f8fafc;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -5px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.25);
}

.btn-accent-outline {
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-accent-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        gap: 1.25rem;
    }

    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .cta-section {
        padding: 4.5rem 0;
    }

    .cta-title {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }

    .cta-description {
        font-size: 1.1875rem;
        max-width: 700px;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        margin-top: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1280px) {
    .cta-title {
        font-size: 3.25rem;
    }
}
