/* Gradient CTA Section */
.gradient-cta-section {
    background: #FFCC00;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gradient-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.gradient-cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 24px;
}

.gradient-cta-title-white {
    color: #FFFFFF;
}

.gradient-cta-title-blue {
    color: #0000CC;
}

.gradient-cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #000000;
    max-width: 672px;
    margin: 0 auto 40px;
}

.gradient-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gradient-cta-button-phone {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 6px;
    padding: 12px 24px;
    text-decoration: none;
    gap: 16px;
    transition: all 0.3s ease;
}

.gradient-cta-button-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gradient-cta-button-phone-icon {
    width: 16px;
    height: 16px;
    stroke: #FFCC00;
    stroke-width: 2;
}

.gradient-cta-button-phone-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 28px;
    color: #FFCC00;
}

.gradient-cta-button-services {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0000CC;
    border-radius: 6px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #0000CC;
}

.gradient-cta-button-services:hover {
    background-color: #0000AA;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gradient-cta-button-services-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gradient-cta-section {
        padding: 60px 0;
    }
    
    .gradient-cta-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .gradient-cta-subtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 32px;
    }
}

@media (max-width: 576px) {
    .gradient-cta-section {
        padding: 40px 0;
    }
    
    .gradient-cta-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .gradient-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gradient-cta-button-phone, 
    .gradient-cta-button-services {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
