.elementor-67 .elementor-element.elementor-element-24b56e8{--display:flex;}/* Start custom CSS *//* ============================
   CONTRACTOR DASHBOARD — FULL PAGE
   Premium Modern Style
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

.cp-dashboard {
    font-family: 'Inter', sans-serif;
    padding: 60px 40px;
    background: linear-gradient(135deg, #F7F7F7 0%, #F2F2F2 40%, #ECECEC 100%);
}

/* HERO */
.cp-dash-hero {
    text-align: center;
    margin-bottom: 60px;
}

.cp-dash-title,
.elementor .cp-dash-title {
    color: #C8102E !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
}


.cp-dash-subtitle {
    font-size: 20px;
    color: #4A4A4A;
}

/* QUICK ACTIONS */
.cp-dash-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.cp-action-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cp-action-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.cp-action-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
/* Make all action cards equal height */
.cp-dash-actions {
    align-items: stretch;
}

/* Turn each card into a vertical flex column */
.cp-action-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Make the button sit at the bottom of each card */
.cp-action-card .cp-btn {
    margin-top: auto;
}


.cp-btn {
    display: inline-block;
    background: #C8102E;
    color: #FFF;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.cp-btn:hover {
    background: #A50D25;
    transform: translateY(-2px);
}

/* STATUS SECTION */
.cp-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.cp-dash-status {
    margin-bottom: 80px;
}

.cp-status-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cp-status-box {
    background: #FFFFFF;
    padding: 30px;
    width: 220px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cp-status-number {
    font-size: 40px;
    font-weight: 700;
    color: #C8102E;
    display: block;
}

.cp-status-label {
    font-size: 16px;
    color: #555;
}

/* RESOURCES */
.cp-resource-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cp-resource-card {
    background: #FFFFFF;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cp-resource-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.cp-resource-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.cp-link {
    color: #C8102E;
    font-weight: 600;
    text-decoration: none;
}

.cp-link:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cp-dash-actions,
    .cp-status-grid,
    .cp-resource-grid {
        flex-direction: column;
        align-items: center;
    }
    /* Make all action cards equal height */
.cp-dash-actions {
    align-items: stretch;
}

/* Force buttons to sit at the bottom of each card */
.cp-action-card {
    display: flex;
    flex-direction: column;
}

.cp-action-card p {
    flex-grow: 1; /* pushes the button down evenly */
}

}/* End custom CSS */