/* CTA Section Enhanced Styles */

.cta-section-modern {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 60px 0;
}

/* Background - Dark Gradient with Glassmorphism */
.cta-modern-wrap {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.25);
}

@media (max-width: 991px) {
    .cta-modern-wrap {
        padding: 50px 30px;
    }
}

/* Abstract Shapes */
.cta-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-line-shape {
    position: absolute;
    right: 5%;
    bottom: 0;
    opacity: 0.1;
    max-width: 300px;
}

/* Content Styling */
.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .cta-content-modern h2 {
        font-size: 2.2rem;
    }
}

.cta-content-modern p {
    font-size: 1.15rem;
    color: #cbd5e1; /* Slate 300 */
    margin-bottom: 0;
    max-width: 90%;
}

/* Right Side - Actions */
.cta-actions-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    gap: 30px;
}

@media (max-width: 991px) {
    .cta-actions-modern {
        align-items: flex-start;
        margin-top: 40px;
    }
}

/* Phone Block */
.cta-phone-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-phone-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.cta-phone-text span {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-phone-text a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

.cta-phone-text a:hover {
    color: #3b82f6;
}

/* Button */
.cta-btn-modern {
    padding: 18px 40px;
    background: #3b82f6;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    display: inline-flex;
    align-items: center;
}

.cta-btn-modern:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

.cta-btn-modern i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-btn-modern:hover i {
    transform: translateX(5px);
}
