.cta-section {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-paragraph {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Form Styling */
.cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-group {
    display: flex;
    gap: 15px;
    width: 100%;
}

.cta-form input[type="tel"],
.cta-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-form input::placeholder {
    color: #ccc;
}

.cta-form input:focus {
    outline: none;
    border-color: #ffeb3b;
    box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.25);
    background-color: rgba(255,255,255,0.15);
}

.cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #ff9800, #f44336);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: linear-gradient(90deg, #f44336, #ff9800);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .cta-form {
        flex-direction: row;
    }
    .form-group {
        flex: 3;
    }
    .cta-button {
        flex: 1;
        width: auto;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .form-group {
        flex-direction: column;
    }
}
