/**
 * Veeru Tech - Inquiry Form Page Styles (Full Width & Dynamic Masks)
 * Synchronized with Vibrant Bright Hero Image, Overlay Engine & Mobile Hero Proportions
 */

/* 1. CONTAINER & RESET OVERRIDES */
html, body {
    overflow-x: hidden !important;
    width: 100% !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: 1240px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* CSS MASKING FOR UPLOADED PNG / JPG / SVG IMAGE ICONS */
.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: #06172e;
    padding: 60px 0;
    color: #ffffff;
    width: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 380px;
}

.vt-inquiry-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--vt-hero-bg-img, none);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: var(--vt-hero-bg-opacity, 1);
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Transparent Overlay Tint Layer */
.vt-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--vt-hero-overlay-bg, linear-gradient(90deg, rgba(6, 23, 46, 0.45) 0%, rgba(6, 23, 46, 0.15) 50%, transparent 100%));
    opacity: var(--vt-hero-overlay-opacity, 1);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.vt-inquiry-hero .vt-inquiry-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

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

.vt-inquiry-hero-text {
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.vt-inquiry-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #ffffff;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.vt-inquiry-hero-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.vt-inquiry-hero-title a:hover {
    opacity: 0.9;
    text-decoration: underline;
}

/* Clean Inline Breadcrumbs (Never overlapping) */
.vt-inquiry-breadcrumb {
    font-size: 14px;
    color: #f17a28;
    margin-bottom: 16px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    display: block;
    position: relative;
}

.vt-inquiry-breadcrumb a {
    color: #f1f5f9;
    text-decoration: none;
}

.vt-inquiry-breadcrumb a:hover {
    text-decoration: underline;
}

.vt-inquiry-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #f1f5f9;
    max-width: 580px;
    word-break: break-word;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.vt-inquiry-hero-desc p {
    margin: 0 0 8px 0;
    color: inherit;
}

.vt-inquiry-hero-desc p:last-child {
    margin-bottom: 0;
}

.vt-inquiry-hero-desc a {
    color: #60a5fa !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    font-weight: 600 !important;
    transition: opacity 0.2s ease, color 0.2s ease !important;
}

.vt-inquiry-hero-desc a:hover {
    color: #ffffff !important;
    opacity: 0.95 !important;
}

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

.vt-inquiry-floating-img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 380px;
    object-fit: contain !important;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: max-height 0.3s ease;
}

/* 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-main-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.vt-section-main-title a:hover {
    color: #f17a28;
}

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

.vt-section-desc p {
    margin: 0 0 8px 0;
    color: inherit;
}

.vt-section-desc p:last-child {
    margin-bottom: 0;
}

.vt-section-desc a {
    color: #f17a28;
    text-decoration: underline;
    font-weight: 600;
}

.vt-section-desc a:hover {
    color: #0f172a;
}

/* 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-card-title a {
    color: inherit;
    text-decoration: none;
}

.vt-card-title a:hover {
    color: #f17a28;
}

.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 h4 a {
    color: inherit;
    text-decoration: none;
}

.vt-why-info h4 a:hover {
    color: #f17a28;
}

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

.vt-why-info-desc p {
    margin: 0;
    color: inherit;
}

.vt-why-info-desc a {
    color: #f17a28;
    text-decoration: underline;
}

.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-card-title-dark a {
    color: inherit;
    text-decoration: none;
}

.vt-card-title-dark a:hover {
    color: #f17a28;
}

.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;
}

.vt-reach-list span a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vt-reach-list span a:hover {
    color: #f17a28;
    text-decoration: underline;
}

/* 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 a {
    color: inherit;
    text-decoration: none;
}

.vt-trust-badge-item a:hover {
    color: #f17a28;
}

.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 h2 a, .vt-stats-left h1 a, .vt-stats-left h3 a {
    color: inherit;
    text-decoration: none;
}

.vt-stats-left h2 a:hover, .vt-stats-left h1 a:hover, .vt-stats-left h3 a:hover {
    color: #f17a28;
}

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

.vt-stats-desc-box p {
    margin: 0 0 10px 0;
    color: inherit;
}

.vt-stats-desc-box a {
    color: #f17a28;
    text-decoration: underline;
    font-weight: 600;
}

.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-num a {
    color: inherit;
    text-decoration: none;
}

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

/* 8. CTA BANNER & FEATURE ITEMS */
.vt-inquiry-cta-section {
    padding: 40px 0 60px 0;
    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-title-text a {
    color: inherit;
    text-decoration: none;
}

.vt-cta-title-text a:hover {
    color: #f17a28;
}

.vt-cta-desc-box {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    max-width: 420px;
    line-height: 1.5;
}

.vt-cta-desc-box p {
    margin: 0;
    color: inherit;
}

.vt-cta-desc-box a {
    color: #f17a28;
    text-decoration: underline;
}

.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-label a {
    color: inherit;
    text-decoration: none;
}

.vt-cta-feat-label a:hover {
    color: #ffffff;
}

.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;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE ENGINE
   ========================================================================== */

@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 !important;
        gap: 30px;
    }
    .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: 768px) {
    /* HERO BANNER - MATCHING ABOUT US PROPORTIONS */
    .vt-inquiry-hero {
        min-height: auto !important;
        height: auto !important;
        padding: 45px 0 !important;
        overflow: visible !important;
    }

    .vt-inquiry-container {
        padding: 0 18px !important;
    }

    .vt-inquiry-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .vt-inquiry-hero-text {
        width: 100% !important;
        text-align: left !important;
    }

    .vt-inquiry-hero-title {
        font-size: clamp(24px, 7vw, 36px) !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
        word-break: break-word !important;
    }

    .vt-inquiry-breadcrumb {
        margin-bottom: 14px !important;
        font-size: 13px !important;
    }

    .vt-inquiry-hero-desc {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
    }

    .vt-inquiry-hero-img {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 10px !important;
    }

    .vt-inquiry-floating-img {
        max-height: 240px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    /* BODY SECTIONS MOBILE FIXES */
    .vt-section-main-title {
        font-size: 24px !important;
    }

    .vt-form-row {
        grid-template-columns: 1fr !important;
    }

    .vt-trust-badges-grid {
        grid-template-columns: 1fr !important;
    }

    .vt-form-footer {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }

    .vt-submit-btn {
        width: 100% !important;
        text-align: center !important;
    }

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

@media (max-width: 480px) {
    .vt-stats-right-grid {
        grid-template-columns: 1fr !important;
    }

    .vt-inquiry-hero-title {
        font-size: 26px !important;
    }
}