/* 
   JobPortal Premium UI Stylesheet
   Enhanced Backgrounds & Modern Aesthetics
*/

/* 1. Imports & Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #eef2ff;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    
    --text-main: #111827;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    --border: #e5e7eb;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Spacing & Sizing */
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 2. Global Reset & Enhanced Background */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    
    /* --- ENHANCED BACKGROUND STRATEGY --- */
    background-color: #f8fafc;
    
    /* 1. Subtle Dot Pattern */
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
    
    /* Fallback for Admin Layout (controlled later) */
    position: relative;
    min-height: 100vh;
}

/* 2. Decorative Gradient Blobs (Glassmorphism effect) */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Primary Blob (Top Left) */
body::before {
    top: -10%;
    left: -5%;
    width: 40vw;
    height: 40vw;
    background: rgba(79, 70, 229, 0.15); /* Primary Indigo */
}

/* Secondary Blob (Bottom Right) */
body::after {
    bottom: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: rgba(249, 115, 22, 0.1); /* Secondary Orange */
}

/* Override for Admin Pages: Keep it clean */
.admin-layout { 
    background: #f3f4f6; 
}
.admin-layout::before, 
.admin-layout::after {
    display: none;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }

/* 3. Navigation Bar */
nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.nav-container {
    width: 100%;
    max-width: 1280px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
}

.logo i { 
    font-size: 1.4rem; 
    background: var(--primary);
    color: white;
    padding: 6px;
    border-radius: 8px;
}

.nav-links a {
    margin-left: 2rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* 4. Hero Section */
/* --- ENHANCED HERO SECTION --- */

.hero {
    background: linear-gradient(135deg, #312e81 0%, #0f172a 100%); /* Deeper, richer gradient */
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* Animated background shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 1. H1 Styling - Premium Gradient & Shadow */
.hero h1 { 
    font-size: 3.8rem; 
    margin-bottom: 1.5rem; 
    font-weight: 900; 
    line-height: 1.1;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
    
    /* Gradient Text Effect */
    .gradient-text {
  /* 1. Fallback solid color (for older browsers) */
  color: #e0e7ff;

  /* 2. Define the gradient */
  background: linear-gradient(90deg, #ffffff 0%, #e0e7ff 100%);

  /* 3. Clip the background to the text (Standard + Webkit) */
  -webkit-background-clip: text;
  background-clip: text;

  /* 4. Make the text transparent to show the gradient */
  -webkit-text-fill-color: transparent;
}
    
    /* Glow Effect */
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    
    /* Animation */
    animation: float 6s ease-in-out infinite;
}

/* 2. P Tag Styling - High Contrast Cyan */
.hero p { 
    font-size: 1.3rem; 
    font-weight: 500;
    color: #a5f3fc; /* Light Cyan - High Contrast */
    margin-bottom: 3rem; 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    
    /* Animation */
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s; /* Slight delay for wave effect */
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; padding: 0 1rem; }
}
/* Search Box */
.search-box {
    background: white;
    padding: 8px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    max-width: 750px;
    width: 100%;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-box input, .search-box select {
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    outline: none;
    width: 100%;
    color: var(--text-main);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.search-box select { 
    cursor: pointer; 
    background-color: #f1f5f9; 
    font-weight: 500;
}

.search-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.search-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
    background: var(--secondary-dark);
}

/* 5. Container & Grid */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background: var(--primary);
    border-radius: 3px;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}

/* 6. Job Card Design */
.job-card {
    background: rgba(255, 255, 255, 0.95); /* Slight transparency */
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(229, 231, 235, 0.6);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    background: white;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.job-card:hover::before { opacity: 1; }

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.job-card h3 { 
    font-size: 1.2rem; 
    color: var(--text-main); 
    margin-bottom: 0.35rem; 
    font-weight: 700;
    line-height: 1.3;
}
.job-card h3:hover { color: var(--primary); }

.company-name { 
    color: var(--text-muted); 
    font-weight: 500; 
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-info i { 
    color: var(--primary); 
    margin-right: 6px; 
    font-size: 0.85rem;
}

.tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.job-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-view:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* 7. Ads Sidebar */
.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 90px;
}

.ad-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.ad-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: white;
}

.ad-label {
    display: inline-block;
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.ad-image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    overflow: hidden;
}

.ad-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.ad-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.ad-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    background: var(--bg-body);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
}

.ad-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* 8. Job Details Page */
.details-header {
    background: white;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.details-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.details-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    border-bottom: 2px solid var(--bg-body);
    padding-bottom: 0.75rem;
}

.apply-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 2rem;
}

.apply-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: var(--radius-md);
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
}

.apply-btn:hover { 
    background: var(--primary-dark); 
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* 9. Admin Dashboard */
.admin-layout { 
    display: flex; 
    /* Override global blob background for admin */
    position: relative;
    z-index: 1;
}

.admin-sidebar {
    width: 260px;
    background: #0f172a;
    min-height: 100vh;
    padding: 2rem;
    color: white;
    position: fixed;
    box-shadow: var(--shadow-xl);
    z-index: 100;
}

.admin-main {
    margin-left: 260px;
    padding: 2.5rem 3rem;
    width: 100%;
    background: #f3f4f6; /* Flat background for admin */
    min-height: 100vh;
}

.admin-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-primary { background: var(--primary); color: white; box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-warning { background: var(--warning); color: #000; }

.table-container { width: 100%; overflow-x: auto; }

table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 0.5rem; 
    background: white; 
    border-radius: var(--radius-md); 
    overflow: hidden; 
}

th, td { padding: 16px 20px; text-align: left; }

th { 
    background: #f1f5f9; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 0.05em;
    font-weight: 700;
    border-bottom: 2px solid var(--border);
}

tr { border-bottom: 1px solid var(--border); }
tr:last-child { border-bottom: none; }
tr:hover { background: #fafafa; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 0.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text-main); font-size: 0.9rem; }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus, .form-textarea:focus, .form-select:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); 
}

/* 10. Login Page */
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc; /* Login page uses the body background by default */
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.login-logo { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 0.5rem; 
    display: block;
}

.login-title { margin-bottom: 2rem; color: var(--text-main); font-weight: 700; }

/* 11. Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: white;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    font-size: 0.9rem;
}

/* 12. Utilities & Responsive */
.hidden { display: none; }

.admin-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 1024px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .search-box { 
        flex-direction: column; 
        border-radius: var(--radius-lg); 
        padding: 1rem; 
        gap: 1rem;
    }
    .search-btn { width: 100%; justify-content: center; }
    .hero h1 { font-size: 2rem; }
    .hero { padding: 3rem 1rem; }
    
    .job-grid { grid-template-columns: 1fr; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .details-content { padding: 1.5rem; }
    .admin-main { padding: 1.5rem; }
    
    /* Hide decorative blobs on mobile to save resources */
    body::before, body::after {
        display: none;
    }
}
/* --- Broker Listings Styles --- */

.listing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.listing-image {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.badge-sale { background: var(--primary); }
.badge-rent { background: var(--secondary); }
.badge-house { background: #10b981; }
.badge-car { background: #6366f1; }
.badge-item { background: #8b5cf6; }

.listing-content {
    padding: 1.5rem;
}

.listing-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.listing-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.listing-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* --- Contact Page Styles --- */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-form-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-btn.tiktok { background: #000; color: white; }
.social-btn.telegram { background: #0088cc; color: white; }
.social-btn.email { background: var(--primary); color: white; }

.social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Responsive */
@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
}

/* --- Broker Sidebar Menu Styles --- */

.broker-menu {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.broker-menu h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 700;
}

.broker-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    transition: all 0.3s ease;
    color: var(--text-main);
    font-weight: 500;
    border: 1px solid transparent;
}

.broker-link:hover {
    background: var(--bg-body);
    border-color: var(--border);
    transform: translateX(5px);
}

.broker-link i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Color variations for icons */
.broker-link.house i { background: #dcfce7; color: #16a34a; }
.broker-link.car i { background: #e0f2fe; color: #0284c7; }
.broker-link.item i { background: #fae8ff; color: #c026d3; }
.broker-link.all i { background: var(--primary-light); color: var(--primary); }

.broker-link span { font-size: 0.85rem; color: var(--text-muted); display: block; margin-top: 2px; }