/* ==========================================================================
   VEERU TECH - CONTACT CTA CALLOUT STYLING (FLUSH 1400PX ALIGNED)
   ========================================================================== */

.veeru-cta-callout-section {
    width: 100% !important;
    padding: 25px 0;
    box-sizing: border-box;
    background-color: transparent;
}

.cta-callout-container {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.cta-callout-card {
    width: 100% !important;
    background-color: #062040;
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-left-wrap {
    flex: 1.2;
}

.cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.45;
}

.cta-contacts-wrap {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-custom-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.cta-contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #94a3b8;
}

.contact-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    background-color: #f17a28;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d8641b;
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-callout-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .cta-contacts-wrap {
        flex-wrap: wrap;
    }
}