/* Virtual Services Page Styles - Using Unique Classes to avoid conflicts */
.virtual-services-section {
    background-color: #fcfcfc;
}

.virtual-services-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.virtual-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.virtual-services-content {
    flex: 1;
}

.virtual-services-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.virtual-services-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.virtual-services-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 0;
    margin-top: 10px;
}

.vs-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.vs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.vs-logo {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* Explicitly remove all filters and effects */
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    transition: none !important; /* Remove transition to avoid "fading" feel */
}

/* Ensure no darkening on hover */
.vs-card:hover .vs-logo img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    background: none !important;
}

.vs-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 3rem;
}

.service-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary);
}

/* Borrowing Highlight Section */
.borrowing-highlight {
    background-color: var(--primary);
    color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
}

.borrowing-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.borrowing-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 650px;
}

.btn-borrowing {
    display: inline-block;
    background-color: var(--tertiary);
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-borrowing:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--primary);
}

@media (max-width: 991px) {
    .virtual-services-header {
        flex-direction: column;
        gap: 20px;
    }

    .virtual-services-title {
        font-size: 2.5rem;
    }

    .borrowing-highlight {
        padding: 30px;
        text-align: center;
    }
    
    .borrowing-desc {
        margin: 0 auto 30px;
    }
    
    .borrowing-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .virtual-services-header,
    .virtual-services-content {
        text-align: center;
        align-items: center;
    }

    .virtual-services-title {
        font-size: 2rem;
    }

    .virtual-services-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
}
