/* rent-management.css - clean, non-tailwind CSS to match the design */

/* Base resets */
:root{
  --max-width: 1200px;
  --accent: #0b3a64;    /* deep blue heading */
  --muted: #6b7280;     /* gray text */
  --accent-gold: #d99b2a; /* gold for icons */
  --card-bg: #ffffff;
  --surface: #f8fafc;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;}
.container{max-width:var(--max-width);margin:0 auto;padding:0 20px}

/* HERO */
.hero{background:var(--surface);padding:64px 0 40px}
.hero-inner{text-align:center;max-width:900px;margin:0 auto}
.hero h1{font-size:48px;margin:0;color:var(--accent);line-height:1.03;font-weight:800}
.hero-sub{margin-top:18px;color:var(--muted);font-size:18px;line-height:1.6;}

/* FEATURE CARDS */
.features{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:36px;margin-bottom:28px;padding:0 20px}
.feature{background:var(--card-bg);border-radius:10px;padding:34px 20px;text-align:center;box-shadow:0 1px 0 rgba(15,15,15,0.03);border:1px solid rgba(11,58,100,0.04)}
.feature .icon{width:64px;height:64px;margin:0 auto 16px;display:flex;align-items:center;justify-content:center}
.feature h3{margin:0;font-size:18px;color:#081e35;font-weight:700}
.feature .muted{margin-top:8px;color:var(--muted)}

/* two-col layout for benefits + tabs */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:32px 0;padding:0 20px}
.card{background:var(--card-bg);padding:20px;border-radius:10px;border:1px solid rgba(11,58,100,0.04);box-shadow:0 1px 0 rgba(15,15,15,0.02)}

/* Key benefits */
.benefits h2{margin-top:0;font-size:22px;color:var(--accent)}
.benefit-list{list-style:none;padding:12px 0 0;margin:0;display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.benefit-list li{display:flex;align-items:center;gap:12px;color:#0f1724}
.benefit-list .check{display:inline-block;background:transparent;color:var(--accent-gold);font-weight:700;padding:4px 6px;border-radius:6px}

/* Tabs */
.tabs-nav{display:flex;gap:12px;padding:8px;background:linear-gradient(#f3f6f8,#f8fbfc);border-radius:8px}
.tab{border:0;background:transparent;padding:12px 22px;border-radius:8px;font-weight:600;cursor:pointer;color:var(--muted)}
.tab.active{background:#fff;color:var(--accent);box-shadow:0 2px 8px rgba(11,58,100,0.06)}
.tab-panels{margin-top:16px}
.tab-panel{display:none}
.tab-panel.active{display:block}

/* simple form */
.simple-form label{display:block;margin-bottom:12px;font-size:14px;color:#0b3a64}
.simple-form input,.simple-form textarea{width:100%;padding:10px;border:1px solid #e6eef4;border-radius:8px;margin-top:6px;font-size:15px}
.form-row{display:flex;gap:12px;align-items:center}
.btn{padding:10px 18px;border-radius:8px;border:0;cursor:pointer}
.btn.primary{background:var(--accent);color:#fff}
.btn.ghost{background:transparent;border:1px solid rgba(11,58,100,0.08)}

/* CTA */
.cta{padding:20px}
.link{color:var(--accent);text-decoration:underline}

/* footer */
.site-footer{margin-top:28px;padding:28px 0;background:#ffffff;text-align:center;color:var(--muted);border-top:1px solid rgba(11,58,100,0.04)}

/* Responsive */
@media (max-width: 980px){
  .features{grid-template-columns:repeat(2,1fr)}
  .two-col{grid-template-columns:1fr}
  .benefit-list{grid-template-columns:1fr}
}
@media (max-width:600px){
  .features{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .hero-sub{font-size:15px}
}
/* Featured Properties Section */
.property-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.property-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.property-card:hover {
    box-shadow: 0 7px 15px rgb(0 0 0 / 0.2);
}

.property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.property-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0b214a;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.property-content {
    padding: 1rem 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #0b214a;
}

.property-location {
    font-size: 0.9rem;
    color: #7a8fab;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/*.property-type {*/
/*    background-color: #e3d38a;*/
/*    color: #726517;*/
/*    font-weight: 700;*/
/*    padding: 2px 7px;*/
/*    border-radius: 12px;*/
/*    font-size: 0.75rem;*/
/*    width: max-content;*/
/*    margin-bottom: 0.8rem;*/
/*}*/

.property-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0b214a;
    margin-bottom: 0.6rem;
}

.property-info {
    font-size: 0.9rem;
    color: #7a8fab;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

/*.btn-view {*/
/*    background-color: transparent;*/
/*    border: 1.5px solid #b99730;*/
/*    color: #b99730;*/
/*    border-radius: 6px;*/
/*    padding: 0.5rem;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    width: 100%;*/
/*}*/

/*.btn-view:hover {*/
/*    background-color: #b99730;*/
/*    color: white;*/
/*}*/
