/* ==========================================================
   LQW NEXUS ERP
   Dashboard
   Version 1.0
==========================================================*/

.lqw-dashboard{

    padding:60px 0 80px;

    background:#f4f7fb;

}

/* ==========================================================
   PORTAL HERO
==========================================================*/

.lqw-portal-hero{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    background:linear-gradient(
        135deg,
        #0f172a,
        #1e40af
    );

    color:#fff;

    padding:55px;

    border-radius:28px;

    margin-bottom:40px;

    box-shadow:0 25px 60px rgba(15,23,42,.18);

}

.lqw-portal-hero-left{

    flex:1;

}

.lqw-hero-label{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.lqw-portal-hero h1{

    margin:0;

    font-size:54px;

    line-height:1.1;

    font-weight:800;

}

.lqw-portal-hero p{

    margin-top:24px;

    line-height:1.8;

    opacity:.92;

    font-size:17px;

}

.lqw-portal-hero-right{

    text-align:right;

}

.lqw-hero-date{

    font-size:32px;

    font-weight:700;

    margin-bottom:18px;

}

.lqw-hero-status{

    display:inline-block;

    background:#16a34a;

    color:#fff;

    padding:12px 22px;

    border-radius:999px;

    font-weight:600;

}


/* ==========================================================
   Statistics
==========================================================*/

.lqw-dashboard-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin:45px 0;

}

.lqw-stat-card{

    background:#fff;

    border-radius:22px;

    padding:30px;

    box-shadow:
        0 12px 35px rgba(15,23,42,.08);

    transition:.30s ease;

    position:relative;

    overflow:hidden;

}

.lqw-stat-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 20px 45px rgba(15,23,42,.15);

}

.lqw-stat-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:#d4af37;

}

.lqw-stat-number{

    font-size:42px;

    font-weight:800;

    color:#0f172a;

    line-height:1;

    margin-bottom:12px;

}

.lqw-stat-title{

    font-size:15px;

    color:#64748b;

    font-weight:600;

}

/* ==========================================================
   Navigation Cards
==========================================================*/

.lqw-dashboard-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:40px;

}

.lqw-dashboard-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-decoration:none;

    color:inherit;

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);

    transition:.30s ease;

    position:relative;
    
    display:flex;
    gap:24px;
    align-items:flex-start;

}

.lqw-dashboard-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 25px 60px rgba(15,23,42,.15);

}

.lqw-dashboard-card i{

    width:64px;

    height:64px;

    border-radius:18px;

    background:#2563eb;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    margin-bottom:22px;

}

.lqw-dashboard-card h3{

    margin:0 0 12px;

    font-size:26px;

    color:#0f172a;

}

.lqw-dashboard-card p{

    margin:0;

    color:#64748b;

    line-height:1.7;

}

.lqw-dashboard-content{

    flex:1;

}

.lqw-dashboard-content h3{

    margin:0 0 10px;

    font-size:22px;

    font-weight:700;

}

.lqw-dashboard-content p{

    margin:0;

    color:#64748b;

    line-height:1.7;

}


.lqw-dashboard-card{

    overflow:hidden;

}

.lqw-dashboard-card:hover{

    transform:translateY(-8px);

}

.lqw-dashboard-card:hover .lqw-dashboard-icon{

    transform:rotate(-8deg) scale(1.08);

}

.lqw-dashboard-icon{

    transition:.30s;

}

/* ==========================================================
   Hover Accent
==========================================================*/

.lqw-dashboard-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:#d4af37;

    transform:scaleX(0);

    transition:.30s;

}

.lqw-dashboard-card:hover::after{

    transform:scaleX(1);

}

/* ==========================================================
   Responsive
==========================================================*/

@media(max-width:1024px){

.lqw-dashboard-stats{

    grid-template-columns:repeat(2,1fr);

}

.lqw-dashboard-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.lqw-portal-hero{

    flex-direction:column;

    align-items:flex-start;

    padding:35px;

}

.lqw-portal-hero h1{

    font-size:38px;

}

.lqw-portal-hero-right{

    text-align:left;

    margin-top:25px;

}

.lqw-dashboard-stats{

    grid-template-columns:1fr;

}

.lqw-dashboard-grid{

    grid-template-columns:1fr;

}

}

.lqw-dashboard-stats{

    grid-template-columns:1fr;

}

.lqw-dashboard-grid{

    grid-template-columns:1fr;

}

}

.lqw-dashboard-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:22px;

    color:#fff;

}

.lqw-dashboard-icon .dashicons{

    font-size:32px;

    width:32px;

    height:32px;

}

/* ==========================================================
   HERO TEXT COLORS
========================================================== */

.lqw-portal-hero,
.lqw-portal-hero *{

    color:#ffffff;

}

.lqw-portal-hero p{

    color:rgba(255,255,255,.92);

}

.lqw-portal-hero strong{

    color:#ffffff;

}

.lqw-portal-hero h1{

    color:#ffffff;

}

.lqw-hero-label{

    color:#ffffff;

}

.lqw-hero-description{

    max-width:650px;

    opacity:.92;

    font-size:17px;

    line-height:1.8;

}

.lqw-hero-version{

    margin-top:15px;

    font-size:15px;

    opacity:.85;

}

/* ==========================================================
   Access Denied
==========================================================*/

.lqw-access-denied{

    background:#fff;

    border-left:6px solid #dc2626;

    border-radius:20px;

    padding:40px;

    margin:40px 0;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.lqw-access-denied h2{

    margin:0 0 15px;

    color:#dc2626;

}

.lqw-access-denied p{

    margin:0;

    color:#666;

    line-height:1.8;

}