/* Vanta Canvas fills the section absolutely */
.virtual-session-section {
    padding: 60px 0;
    background-color: #7f181c; /* Dark red theme */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Vanta canvas target */
#vanta-net-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.20;
}

.auto-container {
    position: relative;
    z-index: 1;
}

.vs-top-note {
    font-size: 11px;
    font-weight: 700;
    color: #ffcccc; /* Light pink/white for contrast */
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.vs-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.vs-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85); /* Off-white for subtitle */
    max-width: 600px;
}

.vs-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 20px;
}

.vs-stat-item {
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 30px;
}

.vs-stat-item.border-0 {
    border-right: none;
    padding-right: 0;
}

.vs-stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.vs-stat-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.vs-included-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vs-included-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.vs-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.vs-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* White icons */
    font-size: 20px;
    margin-top: 2px;
}

.vs-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.vs-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

.vs-certification {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.vs-certification i {
    font-size: 24px;
    color: #ffffff; /* White icon */
}

.vs-certification div {
    display: flex;
    flex-direction: column;
}

.vs-certification strong {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.vs-certification span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/* Right Side - Form Card */
.vs-content-right {
    padding-left: 50px;
}

.vs-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.vs-form-header {
    margin-bottom: 20px;
}

.vs-form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.vs-form-header p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.form-group-vs {
    margin-bottom: 15px;
}

.form-group-vs label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.input-with-icon input,
.input-with-icon select {
    box-sizing: border-box !important;
    width: 100%;
    height: 44px !important;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 15px 0 45px !important;
    font-size: 14px;
    color: #334155;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 42px !important; /* matches heights perfectly on all browsers */
}

/* Specific Chrome date picker height override */
.input-with-icon input[type="date"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Custom Dropdown Arrow */
.input-with-icon select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    outline: none;
    border-color: #7f181c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(186,19,26,0.1);
}

.btn-vs-submit {
    width: 100%;
    height: 48px;
    background: #7f181c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-vs-submit:hover {
    background: #7f181c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186,19,26,0.2);
}

.vs-form-footer {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    margin: 15px 0 0 0;
}

.vs-form-footer a {
    color: #64748b;
    text-decoration: underline;
}

.vs-form-footer a:hover {
    color: #0f172a;
}

@media (max-width: 991px) {
    .vs-content-right {
        padding-left: 15px;
        margin-top: 60px;
    }
    .vs-stats-row {
        gap: 15px;
    }
    .vs-stat-item {
        padding-right: 15px;
    }
    .vs-stat-item h3 {
        font-size: 28px;
    }
}
