/* EHR Page Specific Styles */

/* Hero Section - High End Upgrade */
.ehr-hero {
    /* Deep Clinical Navy Gradient with Hex Pattern */
    background-color: #020617;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.9)),
        url('../img/resource/EHR/EHR2.png');
    background-size: cover, cover, cover;
    background-attachment: fixed;
    /* Parallax effect */
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ehr-hero::after {
    /* Subtle bottom fade */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ffffff, transparent);
    opacity: 0.1;
}

.ehr-hero h1 {
    color: var(--color-white);
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    /* Premium Silver Gradient Text */
    background: linear-gradient(120deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ehr-hero p {
    color: #94a3b8;
    /* Slate 400 */
    font-size: 1.35rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* ONC Badge - Floating Glass Panel */
.onc-badge-container {
    background: rgba(255, 255, 255, 0.05);
    /* Ultra transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px !important;
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.onc-badge-container:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(56, 189, 248, 0.5);
    /* Cyber blue glow */
    background: rgba(255, 255, 255, 0.08);
}

.onc-badge-title {
    color: #e2e8f0 !important;
    /* Light slate text */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    display: inline-block;
}

/* Reporting & Analytics Card - "High End Data" Redesign */
.ehr-report-card {
    background: #0f172a;
    /* Dark Navy base */
    background-image:
        radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(30, 64, 175, 0.15) 0%, transparent 40%);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ehr-report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px -15px rgba(0, 0, 0, 0.5);
    border-color: rgba(56, 189, 248, 0.3);
}

.ehr-report-bg-icon {
    position: absolute;
    right: -30px;
    bottom: -60px;
    font-size: 14rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-15deg);
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ehr-report-card:hover .ehr-report-bg-icon {
    transform: rotate(0deg) scale(1.1) translateX(-20px);
    color: rgba(56, 189, 248, 0.1);
}

.ehr-report-content {
    position: relative;
    z-index: 1;
}

.ehr-report-title {
    font-weight: 800;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.ehr-report-desc {
    color: #cbd5e1;
    /* Slate 300 */
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 750px;
}