/* CTA Section Styles */
.cta_section {
    color: var(--bg-color);
    padding: 4rem 0;
    text-align: center;
}

.cta_title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta_subtitle {
    font-size: 2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.cta_content {
    margin-top: 3rem;
}

.cta_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.cta_card_download{
    justify-content: center;
    align-items: center;

}

.cta_card_title {
    font-size: 2.5rem;
    color: white;
}

.cta_card_description {
    font-size: 1.7rem;
    opacity: 0.9;
    line-height: 2.5rem;
}

.cta_download_btn {
    background: white;
    color: #0064d0;
    font-size: 2rem;
    padding: 1.5rem 3rem;
    border-radius: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem auto;
    transition: all 0.3s ease;
    --btn-color: white;
}

.cta_download_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.consultation_form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consultation_fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.consultation_field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.consultation_input {
    width: 100%;
    height: 5rem;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1rem 1.5rem;
}

.consultation_input.error {
    border: 2px solid #F72C5B;
    background: rgba(247, 44, 91, 0.1);
}

.consultation_textarea {
    width: 100%;
    min-height: 10rem;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1rem 1.5rem;
    resize: vertical;
    font-family: "bakh medium";
}

.consultation_textarea.error {
    border: 2px solid #F72C5B;
    background: rgba(247, 44, 91, 0.1);
}

.consultation_submit_full {
    background: #3DDC84;
    color: white;
    font-size: 1.8rem;
    padding: 1.5rem 3rem;
    height: 5.5rem;
    border-radius: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    --btn-color: #3DDC84;
    width: 100%;
}

.consultation_submit_full:hover {
    background: #2bc46f;
}

.consultation_submit_full:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.consultation_success {
    display: none;
    align-items: center;
    gap: 1rem;
    background: rgba(61, 220, 132, 0.2);
    border: 2px solid #3DDC84;
    border-radius: 1.2rem;
    padding: 1.5rem;
    color: white;
    animation: fadeIn 0.5s ease;
}

.consultation_success svg {
    color: #3DDC84;
    flex-shrink: 0;
}

.cta_contact_methods {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta_contact_title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta_contact_buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta_contact_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-radius: 1.2rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp_btn {
    background: #25D366;
    color: white;
}

.whatsapp_btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.phone_btn {
    background: #007aff;
    color: white;
}

.phone_btn:hover {
    background: #0051d5;
    transform: translateY(-2px);
}

.email_btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.email_btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .cta_title {
        font-size: 3rem;
    }
    
    .cta_subtitle {
        font-size: 1.8rem;
    }
    
    .cta_card {
        margin-bottom: 2rem;
    }
    
    .consultation_input_group {
        flex-direction: column;
    }
    
    .consultation_input {
        height: 5rem;
        width: 100%;
    }
    
    .consultation_submit {
        width: 100%;
        height: 5rem;
    }
    
    .cta_contact_buttons {
        flex-direction: column;
    }
    
    .cta_contact_btn {
        width: 100%;
        justify-content: center;
        padding: 1.5rem 2rem;
        font-size: 1.7rem;
    }
}
