/* ==========================================
   VELOO MED PAGE - CUSTOM STYLES
   ========================================== */

.veloomed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.veloomed-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: #F8FAFC;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.veloomed-card:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #1E6BF1;
}

.veloomed-card.featured {
    transform: scale(1.05);
    border-color: #10B981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    z-index: 1;
}

.veloomed-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.veloomed-badge {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #10B981;
    color: white;
    padding: 0px 8px;
    border-radius: 1px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
}

.veloomed-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1E6BF1, #7C3AED);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.veloomed-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.veloomed-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1E6BF1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.veloomed-price small {
    font-size: 1rem;
    color: #64748B;
    font-weight: 500;
    margin-top: 10px;
}

.veloomed-features {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.veloomed-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.veloomed-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.veloomed-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #10B981;
    font-size: 0.9rem;
}

.veloomed-specialties {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px dashed #CBD5E1;
}

@media (max-width: 992px) {
    .veloomed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .veloomed-card.featured {
        transform: none;
        z-index: auto;
    }

    .veloomed-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .veloomed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Veloomed hero on mobile */
    .veloomed-hero-content .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .veloomed-hero-content .hero-subtitle {
        font-size: 1rem;
    }

    .veloomed-hero-content .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .veloomed-hero-content .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Stats bar on mobile */
    .stats-bar {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Card adjustments */
    .veloomed-card {
        padding: 2rem 1.25rem;
    }

    .veloomed-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .veloomed-card h3 {
        font-size: 1.25rem;
    }

    .veloomed-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .veloomed-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Adjustment for corporate hero overlay with specific image */
.corporate-hero .veloomed-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background_veloomed01.jpg') center/cover no-repeat;
    opacity: 1;
}

.corporate-hero .veloomed-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 1.65) 0%, rgba(30, 107, 241, 0.65) 50%, rgba(124, 58, 237, 0.65) 100%);
}

.veloomed-hero-content {
    position: relative;
    z-index: 10;
}

/* Specialties Cards (Solid Color & Icon Style) */
.specialty-card {
    position: relative;
    min-width: 280px;
    max-width: 280px;
    height: 380px;
    border-radius: 24px;
    padding: 2rem 1.75rem;
    color: #1E293B;
    background-color: white;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: var(--card-bg-color, #2DD4BF);
    border-color: transparent;
}

.specialty-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
}

.specialty-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--card-bg-color, #2DD4BF);
    opacity: 0.15;
    z-index: -1;
    transition: all 0.4s ease;
}

.specialty-card:hover .specialty-icon-wrapper::before {
    background-color: white;
    opacity: 1;
}

.specialty-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--card-bg-color, #2DD4BF);
    transition: color 0.4s ease;
}

.specialty-content {
    margin-top: 1.5rem;
}

.specialty-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: #1E293B;
    transition: color 0.4s ease;
}

.specialty-card:hover .specialty-content h3 {
    color: white;
}

.specialty-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748B;
    margin-bottom: 0;
    transition: color 0.4s ease;
}

.specialty-card:hover .specialty-content p {
    color: rgba(255, 255, 255, 0.95);
}