.fh-landlord-dashboard{
    max-width:1400px;
    margin:50px auto;
    padding:0 30px;
}

/* DASHBOARD HEADER */

.fh-dashboard-header{
    background:linear-gradient(135deg,#071a33,#0d2c54);
    color:#fff;
    padding:40px;
    border-radius:20px;
    margin-bottom:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.fh-dashboard-header h2{
    margin:0;
    font-size:36px;
    font-weight:700;
    color:#fff;
}

.fh-dashboard-header p{
    margin-top:8px;
    color:rgba(255,255,255,.75);
    font-size:15px;
}

/* STATS */

.fh-dashboard-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:30px;
}

.fh-stat-card{
    background:#fff;
    padding:24px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.fh-stat-card h3{
    margin:0;
    font-size:34px;
    color:#0A1A2E;
}

.fh-stat-card p{
    margin-top:8px;
    color:#777;
    font-size:14px;
}

/* FORM */

.fh-form-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    margin-bottom:60px;
}

.fh-form-card h2{
    margin-bottom:25px;
    font-size:30px;
    color:#0A1A2E;
}

.fh-form-card input,
.fh-form-card textarea,
.fh-form-card select{
    width:100%;
    padding:16px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    background:#fafafa;
    font-size:15px;
    transition:.3s;
}

.fh-form-card input:focus,
.fh-form-card textarea:focus{
    outline:none;
    border-color:#C8A349;
    background:#fff;
}

.fh-form-card textarea{
    min-height:120px;
}

/* BUTTONS */

.fh-form-card button,
.fh-submit-btn{
    background:#C8A349;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.fh-form-card button:hover,
.fh-submit-btn:hover{
    transform:translateY(-2px);
}

/* LISTINGS HEADER */

.fh-landlord-dashboard hr{
    display:none;
}

.fh-landlord-dashboard > h2:last-of-type{
    font-size:34px;
    margin-bottom:25px;
    color:#0A1A2E;
}

/* PROPERTY GRID */

.fh-listings-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(350px,1fr));
    gap:35px;
}

/* PROPERTY CARD */

.fh-property-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #f1f1f1;
}

.fh-property-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.fh-property-image{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.fh-property-card h4{
    font-size:24px;
    line-height:1.3;
    margin:22px 22px 12px;
    color:#0A1A2E;
}

.fh-property-card p{
    margin:10px 22px;
    font-size:15px;
    color:#666;
}

.fh-property-card p strong{
    color:#111;
}

/* ACTIONS */

.fh-property-actions{
    display:flex;
    gap:12px;
    padding:22px;
    margin-top:10px;
}

.fh-edit-btn{
    flex:1;
    text-align:center;
    background:#C8A349;
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
}

.fh-delete-btn{
    flex:1;
    border:none;
    background:#e63946;
    color:#fff;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

/* MOBILE */

@media(max-width:900px){

    .fh-dashboard-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .fh-listings-grid{
        grid-template-columns:1fr;
    }

    .fh-dashboard-header h2{
        font-size:28px;
    }
}

@media(max-width:600px){

    .fh-dashboard-stats{
        grid-template-columns:1fr;
    }

    .fh-landlord-dashboard{
        padding:0 15px;
    }
}

.fh-featured-checkbox{
    margin:15px 0;
}

.fh-featured-checkbox label{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#0A1A2E;
}

.fh-featured-checkbox input{
    width:auto !important;
}