/* Velocity Trust Structural Styles */
:root {
    --container-max: 1280px;
    --margin-desktop: 48px;
    --margin-mobile: 16px;
    --gutter: 24px;
}

/* Material Symbols Default */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Utility Layouts */
.vt-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
    width: 100%;
}
@media (max-width: 768px) {
    .vt-container {
        padding-left: var(--margin-mobile);
        padding-right: var(--margin-mobile);
    }
}

/* Hero Section */
.vt-hero {
    position: relative;
    width: 100%;
    height: 716px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.vt-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.vt-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vt-hero-overlay {
    position: absolute;
    inset: 0;
}
.vt-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}
.vt-hero-inner {
    max-width: 42rem;
}
.vt-hero-title {
    margin-bottom: 1rem;
    line-height: 1.1;
}
.vt-hero-desc {
    margin-bottom: 2rem;
}
.vt-hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.vt-hero-btn:hover {
    transform: translateY(-2px);
}

/* How It Works */
.vt-hiw {
    padding: 6rem 0;
}
.vt-hiw-header {
    text-align: center;
    margin-bottom: 4rem;
}
.vt-hiw-title {
    margin-bottom: 0.5rem;
}
.vt-hiw-line {
    width: 5rem;
    height: 0.25rem;
    margin: 0 auto;
    border-radius: 9999px;
}
.vt-hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gutter);
}
@media (max-width: 768px) {
    .vt-hiw-grid {
        grid-template-columns: 1fr;
    }
}
.vt-hiw-card {
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0px 4px 20px rgba(26,66,138,0.06);
    border: 1px solid #E9ECEF;
    transition: all 0.3s;
}
.vt-hiw-card:hover {
    box-shadow: 0px 10px 30px rgba(26,66,138,0.1);
}
.vt-hiw-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s;
}
.vt-hiw-card-title {
    margin-bottom: 0.75rem;
}

/* Form Section */
.vt-form-section {
    padding: 6rem 0;
}
.vt-form-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 12px 40px rgba(26,66,138,0.08);
}
.vt-form-header {
    padding: 2rem;
}
.vt-form-header-title {
    margin: 0;
}
.vt-form-header-desc {
    opacity: 0.9;
    margin: 0;
}
.vt-form-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.vt-form-group-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.vt-form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.vt-form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .vt-form-grid-2, .vt-form-grid-3, .vt-form-body {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}
.vt-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.vt-form-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.vt-form-input, .vt-form-select, .vt-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #E9ECEF;
    box-sizing: border-box;
}
.vt-form-input:focus, .vt-form-select:focus, .vt-form-textarea:focus {
    outline: none !important;
    border-color: #007BFF !important;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2) !important;
}
.vt-form-radio-group {
    display: flex;
    gap: 1rem;
}
.vt-form-radio-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #E9ECEF;
    cursor: pointer;
    transition: all 0.3s;
}
.vt-form-radio-label:hover {
    background: #fbf9f8;
}
.vt-form-hr {
    border: 0;
    border-top: 1px solid #E9ECEF;
}
.vt-form-photo-area {
    width: 100%;
    border: 2px dashed #c4c6d2;
    border-radius: 0.75rem;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-sizing: border-box;
}
.vt-form-submit {
    width: 100%;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
    font-size: 1.125rem;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    background-color: #002b6b;
    color: #ffffff;
    letter-spacing: 0.03em;
}
.vt-form-submit:hover {
    background-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 43, 107, 0.25);
}
.vt-form-submit:active {
    transform: scale(0.98);
}
.vt-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Validation Error States */
.vt-form-error-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: #fff0f0;
    border: 1.5px solid #e53e3e;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    color: #c0392b;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.vt-form-error-banner .material-symbols-outlined {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #e53e3e;
    margin-top: 0.1rem;
}
.vt-form-error-banner p {
    margin: 0.2rem 0;
    line-height: 1.5;
}
.vt-field-error.vt-form-input,
.vt-field-error.vt-form-select,
.vt-field-error.vt-form-textarea {
    border-color: #e53e3e !important;
    background-color: #fff5f5;
    box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.15);
}
.vt-form-radio-group.vt-radio-error .vt-form-radio-label {
    border-color: #e53e3e;
    background-color: #fff5f5;
}
.vt-form-photo-area.vt-field-error {
    border-color: #e53e3e;
    background-color: #fff5f5;
}

/* Trust Bar */
.vt-trust-bar {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 1rem;
}
@media (max-width: 768px) {
    .vt-trust-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.vt-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.vt-footer {
    border-top: 1px solid #E9ECEF;
}
.vt-footer-top {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gutter);
}
@media (max-width: 768px) {
    .vt-footer-top {
        grid-template-columns: 1fr;
    }
}
.vt-footer-title {
    font-weight: bold;
    margin-bottom: 1rem;
}
.vt-footer-desc {
    max-width: 28rem;
}
.vt-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}
.vt-footer-col-title {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 0.75rem;
}
.vt-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.vt-footer-nav a {
    text-decoration: none;
    transition: color 0.3s;
}
.vt-footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid #E9ECEF;
}
@media (max-width: 768px) {
    .vt-footer-bottom {
        text-align: center;
    }
}

/* ==========================================================================
   Call To Action Section
   ========================================================================== */
.vt-cta-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vt-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default color overriden by Elementor */
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.vt-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.vt-cta-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #000000;
}

.vt-cta-button {
    display: inline-block;
    background-color: #3b31df;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vt-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 49, 223, 0.3);
    color: #ffffff;
}

@media (max-width: 768px) {
    .vt-cta-section {
        min-height: 60vh;
    }
    .vt-cta-title {
        font-size: 3rem;
    }
}
