:root {
    --primary: #003366;
    --secondary: #0066cc;
    --accent: #27ae60;
    --bg-light: #f4f7f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.browse-page {
    background-color: var(--bg-light);
}

.browse-hero {
    /* max-width: 1200px; */
    margin: auto;
    /* padding: 40px 0px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--primary);
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
}


/* Property Grid */
.section {
    padding: 80px 5% 0px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 80px;
}

/* Property Card */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    position: relative;
    border: 1px solid #f0f0f0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-score {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-verified {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.card-loc {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-loc i,
.card-footer i {
    color: var(--secondary);
    margin-right: 5px;
}

.card-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--primary);
}


.card .badge-status {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
}

.badge-status.active {
    background-color: #27ae60;
    color: white;
}

.badge-status.rented {
    background-color: #e74c3c;
    color: white;
}