/* CONTACT US PAGE MODULE STYLING - FULL SPECIFICATION */

.veeru-contact-page-wrapper {
    width: 100%;
    background-color: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    box-sizing: border-box;
}

/* 1. HERO BANNER WITH FULL BACKGROUND IMAGE & OVERLAY */
.contact-hero-banner {
    width: 100%;
    background-color: #06172e;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0 90px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 23, 46, 0.85);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.contact-hero-left {
    max-width: 650px;
}

.contact-hero-tag {
    font-size: 13px;
    font-weight: 700;
    color: #f17a28;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.contact-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

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

.contact-breadcrumbs {
    font-size: 13px;
    color: #94a3b8;
}

.contact-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-breadcrumbs span {
    color: #f17a28;
    font-weight: 600;
}

.contact-hero-right {
    max-width: 540px;
    display: flex;
    justify-content: flex-end;
}

.contact-hero-mockup {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}

/* 2. MAIN CONTACT FORM & SIDEBAR SECTION */
.contact-main-sec {
    padding: 70px 0;
}

.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.form-subtag {
    font-size: 12px;
    font-weight: 800;
    color: #f17a28;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 6px;
}

.form-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.form-subtext {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 30px 0;
}

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

.form-group-full {
    grid-column: span 2;
}

.form-field-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 8px;
}

.form-field-label span.req {
    color: #ef4444;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #f17a28;
    box-shadow: 0 0 0 3px rgba(241, 122, 40, 0.15);
}

.contact-textarea {
    height: 130px;
    resize: vertical;
}

.form-privacy-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.form-privacy-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f17a28;
    cursor: pointer;
}

.form-privacy-wrap label {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.form-privacy-wrap label a {
    color: #f17a28;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.form-privacy-wrap label a:hover {
    color: #d8641b;
}

.form-submit-row {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.contact-btn-submit {
    background-color: #f17a28;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

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

.vt-form-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.vt-form-alert.success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.vt-form-alert.error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* RIGHT SIDEBAR */
.contact-sidebar-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card-dark {
    background-color: #06172e;
    border-radius: 16px;
    padding: 34px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(6, 23, 46, 0.15);
}

.sidebar-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.info-item-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item-row:last-child {
    margin-bottom: 0;
}

.info-item-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background-color: rgba(241, 122, 40, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f17a28;
    flex-shrink: 0;
    transition: background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.info-item-icon-box i {
    font-size: 18px;
    color: #f17a28;
    transition: font-size 0.2s ease, color 0.2s ease;
}

.info-item-icon-box svg {
    width: 20px;
    height: 20px;
    fill: #f17a28;
    transition: width 0.2s ease, height 0.2s ease, fill 0.2s ease;
}

.info-icon-mask {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #f17a28;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.info-item-text {
    display: flex;
    flex-direction: column;
}

.info-item-label {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.info-item-val {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
}

.info-item-val a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-item-val a:hover {
    color: #f17a28;
}

/* FOLLOW US SOCIAL BOX */
.sidebar-social-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.social-box-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px 0;
}

.social-icons-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #06172e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon-btn:hover {
    background-color: #f17a28;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon-btn i {
    font-size: 16px;
    line-height: 1;
}

.social-icon-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-icon-mask {
    display: inline-block;
    width: 16px;
    height: 16px;
    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;
}

/* 3. OUR GLOBAL PRESENCE & OFFICES SECTION */
.contact-offices-sec {
    padding: 60px 0;
    background-color: #f8fafc;
}

.offices-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.offices-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 30px;
    align-items: stretch;
}

.global-map-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.sec-box-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #06172e;
    margin: 0 0 8px 0;
}

.sec-box-subtext {
    font-size: 13.5px;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.5;
    max-width: 480px;
}

.world-map-graphic {
    position: relative;
    width: 100%;
    display: block;
    line-height: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.map-bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.map-pin-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 5;
    line-height: 1.4;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-pin-marker:hover {
    transform: translate(-50%, -108%) scale(1.15);
    z-index: 10;
}

.pin-badge-wrap {
    background: #06172e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(6, 23, 46, 0.25);
    margin-bottom: 4px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.pin-pointer-icon {
    width: 20px;
    height: 20px;
    border-radius: 50% 50% 50% 0;
    background: #06172e;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.pin-inner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f17a28;
    transform: rotate(45deg);
}

.offices-right-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offices-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 12px;
    flex-grow: 1;
    align-items: stretch;
}

.office-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.office-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.office-thumb-wrap {
    position: relative;
    width: 100%;
    height: 145px;
    overflow: hidden;
    background: #e2e8f0;
}

.office-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.office-item-card:hover .office-thumb-wrap img {
    transform: scale(1.06);
}

.office-flag-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #06172e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    z-index: 2;
}

.office-info-body {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.office-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #06172e;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.office-detail-text {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.office-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin-top: 2px;
    color: #f17a28;
    fill: #f17a28;
}

.office-detail-icon i {
    font-size: inherit;
    color: inherit;
}

.office-detail-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.office-detail-text a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.office-detail-text a:hover {
    color: #f17a28;
}

/* 4. TRUST BADGES / VALUE PROPS ROW */
.contact-trust-badges-sec {
    padding: 40px 0;
    background-color: #f8fafc;
}

.trust-badges-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.badge-item-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

.badge-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background-color: #f1f5f9;
    color: #06172e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.badge-icon-wrap i {
    font-size: inherit;
    color: inherit;
}

.badge-icon-wrap svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #06172e;
    margin: 0 0 2px 0;
}

.badge-item-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* 5. GAPLESS INFINITE PARTNER LOGO CAROUSEL */
.contact-partners-sec {
    padding: 50px 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.partners-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
}

.partners-sec-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #06172e;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-marquee-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    animation: vt-marquee-infinite var(--vt-marquee-speed, 25s) linear infinite;
}

.partners-marquee-wrap:hover .partners-track {
    animation-play-state: paused;
}

/* Smooth Seamless Keyframe Animation */
@keyframes vt-marquee-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px 16px;
    background-color: transparent;
    border-radius: 8px;
}

/* Full Color Display Mode Fix */
.partners-marquee-wrap.mode-color .partner-logo-item img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

/* Grayscale Color Mode */
.partners-marquee-wrap.mode-grayscale .partner-logo-item img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-marquee-wrap.mode-grayscale .partner-logo-item:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    opacity: 1;
}

.partners-marquee-wrap.mode-grayscale_always .partner-logo-item img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: 0.85;
}

.partner-logo-item img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.partner-brand-fallback {
    font-weight: 800;
    font-size: 16px;
    color: #64748b;
}

/* 6. BOTTOM CTA CALLOUT BANNER */
.contact-cta-banner-sec {
    padding: 50px 0 70px 0;
    background-color: #f8fafc;
}

.cta-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner-box {
    background-color: #06172e;
    border-radius: 16px;
    padding: 36px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 12px 35px rgba(6, 23, 46, 0.15);
}

.cta-left-text {
    max-width: 400px;
}

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

.cta-subtext {
    font-size: 13.5px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

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

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.cta-feature-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background-color: rgba(241, 122, 40, 0.2);
    color: #f17a28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-feature-icon-box i {
    font-size: 18px;
    color: #f17a28;
}

.cta-feature-icon-box svg {
    width: 20px;
    height: 20px;
    fill: #f17a28;
}

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

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

.cta-feature-title {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.cta-feature-sub {
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.3;
}

.cta-btn-link {
    background-color: #f17a28;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.cta-btn-link:hover {
    background-color: #d8641b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .offices-grid-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-banner-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px;
    }

    .cta-middle-features {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .contact-main-container {
        grid-template-columns: 1fr;
    }

    .offices-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .contact-hero-banner {
        padding: 40px 0;
    }

    .contact-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-form-card {
        padding: 24px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .offices-cards-row {
        grid-template-columns: 1fr;
    }

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

    .cta-middle-features {
        flex-direction: column;
        align-items: flex-start;
    }
}