/* ==========================================================================
   Veeru Tech - Inquiry Form Page Styles (Full Width & Dynamic Masks)
   ========================================================================== */

/* 1. OVERRIDE & RESET ALL PARENT THEME & ELEMENTOR CONTAINER CONSTRAINTS */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}

body.page .site,
body.page #page,
body.page #content,
body.page .site-content,
body.page #primary,
body.page .content-area,
body.page #main,
body.page .site-main,
body.page article,
body.page .entry-content,
body.page .elementor,
body.page .elementor-inner,
body.page .elementor-section-wrap,
body.page .elementor-section,
body.page .elementor-container,
body.page .elementor-column,
body.page .elementor-widget,
body.page .elementor-widget-container,
body.page .elementor-widget-veeru_tech_inquiry_page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none !important;
    flex: 0 0 100% !important;
    box-sizing: border-box !important;
}

.vt-inquiry-page-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
    clear: both;
}

/* CENTERED INNER CONTENT CONTAINER */
.vt-inquiry-container {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

/* CSS MASKING FOR UPLOADED PNG / JPG / SVG IMAGE ICONS COLOR TINTING */
.vt-icon-img-mask {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    vertical-align: middle;
    flex-shrink: 0;
}

/* 2. HERO BANNER & OPACITY ENGINE */
.vt-inquiry-hero {
    background-color: #031226;
    padding: 50px 0;
    color: #ffffff;
    width: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.vt-inquiry-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--vt-hero-bg-img, radial-gradient(circle at right center, #0a2540 0%, #031226 70%));
    background-size: cover;
    background-position: center;
    opacity: var(--vt-hero-bg-opacity, 1);
    z-index: 0;
    transition: opacity 0.3s ease;
}

.vt-inquiry-hero .vt-inquiry-container {
    position: relative;
    z-index: 2;
}

.vt-inquiry-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.vt-inquiry-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.vt-inquiry-breadcrumb {
    font-size: 14px;
    color: #94a3b8;
    margin: 0 0 12px 0;
}

.vt-inquiry-hero-desc {
    font-size: 15px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

.vt-inquiry-hero-img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.vt-inquiry-hero-img img {
    max-width: 100%;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* 3. SECTION HEADER & MAIN FORM SECTION */
.vt-inquiry-main-section {
    padding: 60px 0;
    background-color: #ffffff;
    width: 100% !important;
    box-sizing: border-box;
}

.vt-section-header-box {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.vt-section-sub {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f17a28;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.vt-section-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.vt-section-desc {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* 4. INQUIRY FORM & SIDEBAR GRID */
.vt-inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.vt-inquiry-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

/* ALERT BOX */
.vt-alert-box {
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.vt-alert-box.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.vt-alert-box.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.vt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vt-form-group {
    margin-bottom: 0;
}

.vt-form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.vt-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.vt-form-group label .required {
    color: #ef4444;
}

.vt-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.vt-form-control:focus {
    outline: none;
    border-color: #f17a28;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(241, 122, 40, 0.1);
}

.vt-subject-inquiry-row {
    align-items: start;
}

.vt-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
    margin-top: 8px;
}

.vt-radio-group label {
    font-weight: 400;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vt-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.vt-checkbox-label {
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
}

.vt-terms-link {
    color: #f17a28;
    text-decoration: underline;
    font-weight: 600;
}

.vt-submit-btn {
    background-color: #f17a28;
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vt-submit-btn:hover {
    background-color: #d96414;
    transform: translateY(-2px);
}

/* 5. SIDEBAR CARDS */
.vt-inquiry-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.vt-sidebar-dark-card {
    background-color: #031226;
    color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-sizing: border-box;
}

.vt-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.vt-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vt-why-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vt-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.vt-why-icon i {
    font-size: 22px;
    color: #f17a28;
}

.vt-why-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.vt-why-info p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

.vt-sidebar-light-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    box-sizing: border-box;
}

.vt-card-title-dark {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.vt-reach-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vt-reach-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.vt-reach-list i {
    color: #f17a28;
    font-size: 20px;
    margin-top: 2px;
}

.vt-reach-list strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
}

.vt-reach-list span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* 6. TRUST BADGES BAR */
.vt-trust-badges-bar {
    background-color: #f8fafc;
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    width: 100% !important;
    box-sizing: border-box;
}

.vt-trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    text-align: center;
}

.vt-trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.vt-trust-badge-item i {
    font-size: 22px;
    color: #f17a28;
}

/* 7. STATS PROMO BANNER */
.vt-stats-promo-section {
    padding: 60px 0;
    width: 100% !important;
    box-sizing: border-box;
}

.vt-stats-promo-banner {
    background-color: #031226;
    border-radius: 20px;
    padding: 50px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-sizing: border-box;
}

.vt-stats-left h2, .vt-stats-left h1, .vt-stats-left h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.25;
}

.vt-stats-left p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.vt-orange-btn {
    display: inline-block;
    background-color: #f17a28;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vt-orange-btn:hover {
    background-color: #d96414;
}

.vt-stats-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vt-stat-box {
    text-align: center;
    padding: 25px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vt-stat-box:hover {
    border-color: #f17a28;
    background-color: rgba(241, 122, 40, 0.05);
}

.vt-stat-box i {
    font-size: 28px;
    color: #f17a28;
    margin-bottom: 8px;
}

.vt-stat-num {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 4px 0;
}

.vt-stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

/* 8. TECH PARTNERS LOGO STRIP */
.vt-inquiry-partners-strip {
    padding: 40px 0 60px 0;
    width: 100% !important;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow: hidden;
}

.vt-partners-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.vt-partners-wrapper.vt-grid-active .vt-partners-marquee-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vt-partners-wrapper.vt-marquee-active .vt-partners-marquee-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: vtMarquee 20s linear infinite;
}

.vt-partners-wrapper.vt-marquee-active:hover .vt-partners-marquee-inner {
    animation-play-state: paused;
}

@keyframes vtMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.vt-partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: transparent;
    flex-shrink: 0;
}

.vt-partner-logo-item img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.vt-partner-logo-item img:hover {
    transform: scale(1.08);
}

.vt-partner-text-logo {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.5px;
}

/* 9. CTA BANNER & FEATURE ITEMS */
.vt-inquiry-cta-section {
    padding-bottom: 60px;
    width: 100% !important;
    box-sizing: border-box;
}

.vt-cta-banner {
    background-color: #031226;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    gap: 20px;
    box-sizing: border-box;
}

.vt-cta-title-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.vt-cta-text p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    max-width: 420px;
}

.vt-cta-features {
    display: flex;
    gap: 24px;
    align-items: center;
}

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

.vt-cta-features i {
    color: #f17a28;
    font-size: 18px;
}

.vt-cta-feat-info {
    display: flex;
    flex-direction: column;
}

.vt-cta-feat-label {
    font-size: 13px;
    font-weight: 700;
    color: #cbd5e1;
    line-height: 1.2;
}

.vt-cta-feat-subtext {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.2;
    margin-top: 2px;
}

.vt-cta-btn {
    background-color: #f17a28;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.vt-cta-btn:hover {
    background-color: #d96414;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1199px) {
    .vt-cta-features {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .vt-inquiry-hero-grid,
    .vt-inquiry-grid,
    .vt-stats-promo-banner {
        grid-template-columns: 1fr;
    }
    .vt-trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vt-cta-banner {
        flex-direction: column;
        text-align: center;
    }
    .vt-inquiry-hero-img {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .vt-form-row {
        grid-template-columns: 1fr;
    }
    .vt-trust-badges-grid {
        grid-template-columns: 1fr;
    }
    .vt-form-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .vt-stats-right-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}