/* Enhanced CTA Section Styles */

/* Full width background */
#cta-component section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #3B82F6 !important; /* Primary blue */
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

/* Dot pattern for background */
.dot-pattern {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    width: 100%;
    height: 100%;
}

/* Subtle gradient overlay - matching the image exactly */
#cta-component section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 1) 0%, rgba(66, 138, 248, 1) 100%);
    opacity: 0.3;
    z-index: 1;
}

#cta-component section > div {
    position: relative;
    z-index: 2;
}

/* Ensure icons are visible against blue background */
#cta-component svg {
    color: white !important;
    stroke: white !important;
    fill: none !important;
}

/* Button hover effects */
#cta-component button {
    transition: all 0.3s ease;
}

#cta-component button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Semi-transparent backgrounds */
#cta-component .bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

/* Hover effect for feature icons */
#cta-component .bg-white\/20:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Match the design in the image */
#cta-component .w-20.h-20 {
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.2);
}
