/* ========================================
   CTA SECTION - VISUAL IMPROVEMENTS
   "Ready To Take Your Business To New Heights?"
   ======================================== */

/* Section Container */
.cta-growth-section {
    padding: 6rem 0 !important;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
    position: relative !important;
}

.cta-growth-section .container {
    max-width: 1200px !important;
}

/* Section Heading */
.cta-growth-section h2 {
    font-family: 'Inter', 'Montserrat', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

/* Section Description */
.cta-growth-section > div > div > p {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    color: #64748b !important;
    max-width: 800px !important;
    margin: 0 auto 3rem !important;
    line-height: 1.7 !important;
    text-align: center !important;
}

/* CTA Cards Grid */
.cta-cards-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    gap: 0 !important;
}

/* CTA Card */
.cta-card-growth {
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 1.5rem !important;
    padding: 3.5rem 3rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 6px 10px -5px rgba(0, 0, 0, 0.04) !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Top gradient bar on hover */
.cta-card-growth::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 6px !important;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.4s ease !important;
}

.cta-card-growth:hover::before {
    transform: scaleX(1) !important;
}

/* Card Hover Effect */
.cta-card-growth:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 15px 25px -10px rgba(30, 92, 170, 0.2) !important;
    border-color: #93c5fd !important;
}

/* Icon Wrapper */
.cta-card-growth > div:first-child {
    width: 5rem !important;
    height: 5rem !important;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 2rem !important;
    transition: all 0.3s ease !important;
}

.cta-card-growth > div:first-child svg {
    width: 2.5rem !important;
    height: 2.5rem !important;
    color: #1E5CAA !important;
    stroke: #1E5CAA !important;
}

.cta-card-growth:hover > div:first-child {
    transform: scale(1.1) rotate(5deg) !important;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%) !important;
}

.cta-card-growth:hover > div:first-child svg {
    color: white !important;
    stroke: white !important;
}

/* Card Title */
.cta-card-growth h3 {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

/* Card Description */
.cta-card-growth p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.0625rem !important;
    color: #64748b !important;
    margin-bottom: 2.5rem !important;
    line-height: 1.7 !important;
}

/* Button Styling */
.cta-card-growth .btn-premium {
    padding: 1rem 2.5rem !important;
    font-size: 1.0625rem !important;
    font-weight: 600 !important;
    border-radius: 9999px !important;
    background: linear-gradient(135deg, #1E5CAA 0%, #3b82f6 100%) !important;
    color: white !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px -5px rgba(30, 92, 170, 0.4) !important;
}

.cta-card-growth .btn-premium svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    stroke: white !important;
    transition: transform 0.3s ease !important;
}

.cta-card-growth .btn-premium:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 35px -5px rgba(30, 92, 170, 0.5) !important;
    background: linear-gradient(135deg, #174a85 0%, #2563eb 100%) !important;
}

.cta-card-growth .btn-premium:hover svg {
    transform: translateX(4px) !important;
}

/* Responsive - Tablet */
@media (max-width: 991.98px) {
    .cta-growth-section {
        padding: 5rem 0 !important;
    }
    
    .cta-card-growth {
        padding: 3rem 2.5rem !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 767.98px) {
    .cta-growth-section {
        padding: 4rem 0 !important;
    }
    
    .cta-cards-grid {
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .cta-card-growth {
        padding: 2.5rem 2rem !important;
    }
    
    .cta-card-growth > div:first-child {
        width: 4.5rem !important;
        height: 4.5rem !important;
        margin-bottom: 1.75rem !important;
    }
    
    .cta-card-growth > div:first-child svg {
        width: 2.25rem !important;
        height: 2.25rem !important;
    }
    
    .cta-card-growth h3 {
        font-size: 1.5rem !important;
    }
    
    .cta-card-growth p {
        font-size: 1rem !important;
    }
    
    .cta-card-growth .btn-premium {
        width: 100% !important;
        max-width: 320px !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .cta-card-growth {
        padding: 2rem 1.5rem !important;
    }
}


