    
    /* ==========================================
       CORE & VARIABLES
       ========================================== */
    :root {
        --bg-body: #F3F4F6; --bg-surface: #FFFFFF; --bg-surface-hover: #F9FAFB;
        --text-main: #111827; --text-secondary: #4B5563; --text-muted: #9CA3AF;
        --brand-primary: #0F172A; --brand-secondary: #1E293B; --brand-accent: #2563EB; --brand-accent-hover: #1D4ED8;
        --success-green: #10B981; --success-bg: #D1FAE5; --warning-gold: #F59E0B; --warning-bg: #FEF3C7;
        --border-light: #E5E7EB; --border-medium: #D1D5DB; --font-family: 'Inter', sans-serif;
        --container-width: 1300px; --sidebar-width: 280px;
        --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 1.5rem; --space-xl: 2rem; --space-2xl: 3rem;
        --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;
        --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-premium: 0 0 0 2px var(--warning-gold), 0 10px 15px -3px rgba(245, 158, 11, 0.2);
    }
    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-family); background-color: var(--bg-body); color: var(--text-main); line-height: 1.5; font-size: 15px; -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: var(--brand-accent); transition: color 0.2s; }
    a:hover { color: var(--brand-accent-hover); }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    
    .container { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--space-lg); }
    .flex { display: flex; } .flex-col { flex-direction: column; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
    .font-semibold { font-weight: 600; } .font-bold { font-weight: 700; } .text-muted { color: var(--text-muted); }
    
    /* Ticker Header */
    .ticker-wrap { background: #000; color: #10B981; font-size: 0.8rem; padding: 8px 0; overflow: hidden; white-space: nowrap; box-sizing: border-box; font-weight: 600; border-bottom: 1px solid #1f2937;}
    .ticker { display: inline-block; animation: ticker 40s linear infinite; padding-left: 100%; }
    @keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }
    .ticker-item { display: inline-block; padding: 0 40px; border-right: 1px solid rgba(16, 185, 129, 0.3); }
    .ticker-item span { color: #fff; font-weight: 400; margin-left: 8px;}
    
    /* Top Utility Bar with Socials */
    .top-utility-bar { background-color: var(--brand-secondary); color: #E5E7EB; padding: 8px 0; font-size: 0.8rem; }
    .utility-inner { display: flex; justify-content: space-between; align-items: center; }
    .top-socials { display: flex; gap: 15px; align-items: center; }
    .top-socials a { color: #9CA3AF; transition: color 0.2s; display: flex; align-items: center;}
    .top-socials a:hover { color: #FFFFFF; }
    .top-socials svg { width: 14px; height: 14px; fill: currentColor; }
    .utility-links a { color: #E5E7EB; margin-left: 15px; cursor: pointer; }
    
    .main-header { background-color: var(--bg-surface); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .brand-logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; color: var(--brand-primary); letter-spacing: -0.5px; }
    .brand-logo svg { width: 32px; height: 32px; }
    
    .main-nav { display: flex; gap: 25px; height: 100%; align-items: center; }
    .nav-item { color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; height: 100%; display: flex; align-items: center; border-bottom: 2px solid transparent; transition: all 0.2s; }
    .nav-item:hover, .nav-item.active { color: var(--brand-accent); border-bottom-color: var(--brand-accent); }
    
    .header-actions { display: flex; align-items:center; gap:10px; }
    .header-actions .btn { padding: 8px 16px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
    .btn-login { color: var(--bg-surface); background: var(--brand-primary); }
    .btn-login:hover { background: var(--brand-secondary); }
    
    /* User Profile Dropdown */
    .user-dropdown-wrap { position: relative; display: inline-block; }
    .user-profile-icon { display: flex; align-items: center; gap: 6px; background: transparent; color: var(--brand-primary); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; padding: 5px 10px; border-radius: var(--radius-sm); transition: background 0.2s;}
    .user-profile-icon:hover { background: var(--bg-surface-hover); }
    .user-profile-icon svg { width: 22px; height: 22px; fill: currentColor; }
    .user-dropdown-menu { display: none; position: absolute; right: 0; top: 100%; background: var(--bg-surface); min-width: 180px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); border-radius: var(--radius-md); z-index: 1001; overflow: hidden; margin-top: 5px;}
    .user-dropdown-wrap:hover .user-dropdown-menu { display: block; animation: fadeIn 0.2s ease;}
    @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
    .dropdown-header { padding: 12px 15px; border-bottom: 1px solid var(--border-light); font-size: 0.85rem; color: var(--text-muted); background: #f9fafb;}
    .user-dropdown-menu a { display: block; padding: 10px 15px; color: var(--text-main); font-size: 0.9rem; transition: background 0.2s; font-weight: 500;}
    .user-dropdown-menu a:hover { background: var(--bg-body); color: var(--brand-accent); }
    .user-dropdown-menu a.text-red { color: #DC2626; border-top: 1px solid var(--border-light);}
    .user-dropdown-menu a.text-red:hover { background: #FEF2F2; color: #B91C1C; }
    
    /* Hero & Stats */
    .hero-section { background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); padding: 60px 0; color: var(--bg-surface); text-align: center; position: relative; overflow: hidden;}
    .hero-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -1px; }
    .hero-title span { color: var(--success-green); }
    .hero-subtitle { font-size: 1.1rem; color: #9CA3AF; max-width: 700px; margin: 0 auto 30px; }
    
    .hero-stats { display: flex; justify-content: center; gap: 20px; margin-top: 35px; flex-wrap: wrap;}
    .stat-item { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); padding: 15px 25px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); min-width: 180px;}
    .stat-value { font-size: 1.8rem; font-weight: 800; color: var(--success-green); margin-bottom: 2px; display: flex; align-items: center; justify-content: center; gap: 5px;}
    .stat-label { font-size: 0.8rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;}
    
    /* B2B Live Search Widget */
    .search-widget { display: flex; max-width: 900px; margin: 0 auto; background: var(--bg-surface); padding: 8px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transition: transform 0.2s ease; position: relative; z-index: 10;}
    .search-widget:focus-within { transform: translateY(-2px); box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
    .search-field { display: flex; align-items: center; padding: 0 15px; border-right: 1px solid var(--border-light); background: var(--bg-surface); }
    .search-field:first-child { width: 25%; cursor: pointer;}
    .search-field:nth-child(2) { width: 55%; }
    .search-field svg { fill: var(--text-muted); width: 20px; height: 20px; margin-right: 10px; }
    .search-input { width: 100%; border: none; outline: none; font-size: 1rem; color: var(--text-main); padding: 12px 0; background: transparent; cursor:inherit;}
    .search-input::placeholder { color: var(--text-muted); }
    .search-btn { width: 20%; background-color: var(--brand-accent); color: var(--bg-surface); font-weight: 700; font-size: 1.05rem; border-radius: var(--radius-md); transition: background 0.2s; }
    .search-btn:hover { background-color: var(--brand-accent-hover); }
    
    .popular-searches { margin-top: 20px; font-size: 0.85rem; color: #9CA3AF; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
    .popular-searches a { color: #D1D5DB; background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: 20px; transition: all 0.2s;}
    .popular-searches a:hover { background: var(--brand-accent); color: var(--bg-surface); }
    
    .page-header-strip { background: var(--bg-surface); border-bottom: 1px solid var(--border-light); padding: 15px 0; }
    .breadcrumbs { font-size: 0.85rem; color: var(--text-secondary); }
    .breadcrumbs span { margin: 0 8px; color: var(--text-primary); }
    
    /* Sidebar & Filters */
    .directory-layout { display: flex; flex-direction: row-reverse; gap: 30px; margin-top: 30px; margin-bottom: 60px; align-items: flex-start; }
    .sidebar-filters { width: var(--sidebar-width); background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 20px; position: sticky; top: 90px; }
    .filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--border-light); }
    .filter-header h3 { font-size: 1.1rem; color: var(--brand-primary); }
    .clear-filters { font-size: 0.8rem; color: var(--brand-accent); cursor: pointer; }
    .filter-group { margin-bottom: 25px; }
    .filter-group-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; color: var(--text-main); }
    .checkbox-item { display: flex; align-items: center; margin-bottom: 10px; cursor: pointer; }
    .checkbox-item input { margin-right: 10px; width: 16px; height: 16px; accent-color: var(--brand-accent); cursor: pointer; }
    .checkbox-item span { font-size: 0.9rem; color: var(--text-secondary); }
    .checkbox-count { margin-left: auto; background: var(--bg-body); padding: 2px 6px; border-radius: 10px; font-size: 0.75rem; color: var(--text-muted); }
    
    /* Listings & Dynamic CTAs */
    .listings-container { flex: 1; min-width: 0; }
    .listings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .listings-header h1 { font-size: 1.5rem; color: var(--brand-primary); }
    .sort-control { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
    .sort-select { padding: 8px 12px; border: 1px solid var(--border-medium); border-radius: var(--radius-sm); background: var(--bg-surface); color: var(--text-main); outline: none; font-weight: 500; cursor: pointer;}
    
    .listing-card { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; display: flex; gap: 24px; transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s; position: relative; }
    .listing-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-medium); transform: translateY(-2px); }
    .listing-card.premium { border: 2px solid var(--warning-gold); background: linear-gradient(to right, #FFFFFF, #FFFCF5); }
    .listing-card.premium:hover { box-shadow: var(--shadow-premium); }
    .listing-card.hidden-by-search { display: none !important; }
    
    .premium-badge { position: absolute; top: -12px; left: 24px; background: var(--warning-gold); color: #000; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; display: flex; align-items: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
    .premium-badge.green { background: var(--success-green); color: white; border: 2px solid var(--success-green); }
    .premium-badge.blue { background: var(--brand-accent); color: white; }
    
    .card-logo-area { width: 140px; flex-shrink: 0; display: flex; flex-direction:column; align-items: center; gap: 10px; }
    .company-logo { width: 140px; height: 140px; background: var(--bg-body); border: 1px solid var(--border-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: var(--border-medium); }
    .company-logo.premium-logo { background: #FFFBEB; color: #D97706; border-color: #FCD34D; }
    .trust-score { width: 100%; background: var(--success-bg); color: var(--success-green); text-align: center; padding: 4px 0; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 700; }
    
    .card-content-area { flex: 1; min-width: 0; }
    .card-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
    .company-name { font-size: 1.4rem; font-weight: 700; color: var(--brand-primary); display: flex; align-items: center; gap: 8px; }
    .verified-icon { display: inline-flex; align-items: center; justify-content: center; background: var(--success-green); color: white; width: 18px; height: 18px; border-radius: 50%; font-size: 10px; }
    .rating-stars { color: var(--warning-gold); font-size: 1rem; display: flex; align-items: center; gap: 5px; }
    .rating-count { color: var(--text-muted); font-size: 0.85rem; }
    .company-meta { display: flex; flex-wrap: wrap; gap: 15px; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--border-light); }
    .meta-item { display: flex; align-items: center; gap: 5px; }
    .meta-item.highlight { font-weight: 600; color: var(--brand-accent); }
    .company-desc { font-size: 0.95rem; color: var(--text-main); margin-bottom: 15px; line-height: 1.6; }
    .tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
    .b2b-tag { background: var(--bg-body); border: 1px solid var(--border-light); padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; }
    .b2b-tag.highlight { background: #EFF6FF; border-color: #BFDBFE; color: var(--brand-accent); }
    
    .card-action-area { width: 200px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; border-left: 1px solid var(--border-light); padding-left: 24px; justify-content: center; }
    .btn-action { width: 100%; padding: 10px 15px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; cursor: pointer; border: none;}
    .btn-contact { background: var(--brand-accent); color: white; }
    .btn-contact:hover { background: var(--brand-accent-hover); transform: translateY(-1px);}
    .btn-outline { background: transparent; border: 1.5px solid var(--brand-accent); color: var(--brand-accent); }
    .btn-outline:hover { background: #EFF6FF; transform: translateY(-1px);}
    
    /* In-Feed CTA Block */
    .in-feed-cta { background: linear-gradient(to right, #EFF6FF, #DBEAFE); border: 1px dashed #93C5FD; border-radius: var(--radius-md); padding: 30px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; transition: transform 0.2s; }
    .in-feed-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .cta-content h3 { font-size: 1.3rem; color: var(--brand-accent-hover); margin-bottom: 5px; }
    .cta-content p { color: var(--text-secondary); font-size: 0.95rem;}
    .cta-btn { background: var(--brand-primary); color: white; padding: 12px 25px; border-radius: var(--radius-sm); font-weight: bold; white-space: nowrap; transition: background 0.2s;}
    .cta-btn:hover { background: var(--brand-secondary); }
    
    /* Floating Action Button (FAB) */
    .fab { position: fixed; bottom: 30px; right: 30px; background: var(--brand-primary); color: white; border-radius: 50px; padding: 12px 24px; font-weight: 700; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.3); z-index: 1000; transition: transform 0.2s, background 0.2s; border: 2px solid rgba(255,255,255,0.1); cursor: pointer;}
    .fab:hover { background: var(--brand-secondary); transform: translateY(-3px) scale(1.02); }
    .fab-icon { background: var(--success-green); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800;}
    
    /* Footer & Locations */
    .locations-section { background: var(--bg-surface); padding: 40px 0; border-top: 1px solid var(--border-light); }
    .locations-section h3 { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 30px; text-align: center; font-weight: 900; letter-spacing: -0.5px;}
    .district-matrix { column-count: 6; column-gap: 20px; font-size: 0.85rem; }
    .state-matrix { column-count: 4!important; column-gap: 20px; font-size: 0.85rem; }
    .district-item { break-inside: avoid; margin-bottom: 12px; }
    .district-item a { color: var(--text-secondary); display: block; padding: 2px 0; transition: color 0.2s;}
    .district-item a:hover { color: var(--brand-accent); padding-left: 2px;}
    .state { font-weight: bold; color: var(--brand-primary); text-transform: uppercase}
    .mega-footer { background: var(--brand-primary); color: #D1D5DB; padding: 70px 0 30px; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
    .footer-col h4 { color: white; font-size: 1.2rem; margin-bottom: 20px; font-weight: 600; position: relative; padding-bottom: 10px;}
    .footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--brand-accent); }
    .footer-col ul li { margin-bottom: 12px; font-size: 0.95rem; }
    .footer-col a { color: #9CA3AF; transition: color 0.2s; }
    .footer-col a:hover { color: white; }
    .footer-brand p { margin-top: 15px; font-size: 0.95rem; line-height: 1.6; color: #9CA3AF;}
    
    /* Social Icons (Footer) */
    .social-row { display: flex; gap: 12px; margin-top: 25px; }
    .social-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: #D1D5DB;}
    .social-icon:hover { background: var(--brand-accent); color: white; transform: translateY(-3px); border-color: var(--brand-accent);}
    .social-icon svg { width: 18px; height: 18px; fill: currentColor; }
    
    .newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
    .newsletter-form input { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: white; padding: 12px; border-radius: var(--radius-sm); outline: none; transition: border-color 0.2s; }
    .newsletter-form input:focus { border-color: var(--brand-accent); background: rgba(255, 255, 255, 0.1); }
    .newsletter-form button { padding: 12px; background: var(--brand-accent); color: white; border-radius: var(--radius-sm); font-weight: bold; transition: background 0.2s; border: none; cursor: pointer;}
    .newsletter-form button:hover { background: var(--brand-accent-hover); }
    
    .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; font-size: 0.85rem; color: #6B7280; }
    
    @media (max-width: 1024px) { .directory-layout { flex-direction: column; flex-direction: column-reverse; } .sidebar-filters { width: 100%; position: static; } .filter-group { display: inline-block; width: 30%; margin-right: 3%; vertical-align: top; } .footer-grid { grid-template-columns: 1fr 1fr; } .district-matrix { column-count: 3; } .in-feed-cta { flex-direction: column; text-align: center; gap: 15px;}}
    
    @media (max-width: 768px) { 
        /* Hero adjustments for mobile */
        .hero-section { padding: 30px 0 40px; }
        .hero-title { font-size: 2.1rem; margin-bottom: 10px;}
        .hero-subtitle { font-size: 0.95rem; margin-bottom: 20px;}
        .hero-stats { gap: 10px; margin-top: 25px;} 
        .stat-item { flex: 1; min-width: 100px; padding: 10px; border-radius: var(--radius-md);}
        .stat-value { font-size: 1.4rem; }
        .stat-label { font-size: 0.7rem; }
        
        .search-widget { flex-direction: column; background: transparent; box-shadow: none; } .search-field { width: 100% !important; border-right: none; border-bottom: 1px solid var(--border-light); padding: 15px; border-radius: var(--radius-sm); margin-bottom: 10px; } .search-btn { width: 100%; padding: 15px; } .listing-card { flex-direction: column; } .card-action-area { width: 100%; border-left: none; border-top: 1px solid var(--border-light); padding-left: 0; padding-top: 15px; flex-direction: row; flex-wrap: wrap; } .btn-action { flex: 1; min-width: 140px; } .card-logo-area { width: 100%; flex-direction: row; } .company-logo { width: 80px; height: 80px; } .filter-group { width: 100%; display: block; margin-right: 0; } .district-matrix { column-count: 2; } .main-nav { display: none; } .footer-grid { grid-template-columns: 1fr; gap: 30px;} .fab { bottom: 20px; right: 20px; padding: 10px 18px; font-size: 0.9rem;} 
    }
    
    /* UI MODALS */
    .modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,23,42,0.8); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(3px); opacity: 0; transition: opacity 0.3s ease; }
    .modal-overlay.show { opacity: 1; }
    .modal-box { background: white; width: 90%; max-width: 450px; padding: 30px; border-radius: var(--radius-md); position: relative; box-shadow: var(--shadow-lg); transform: translateY(20px) scale(0.95); transition: transform 0.3s ease; }
    .modal-overlay.show .modal-box { transform: translateY(0) scale(1); }
    .modal-box.large { max-width: 800px; padding: 0; overflow: hidden; display: flex; flex-direction: column; max-height: 85vh; }
    .modal-close { position: absolute; top: 15px; right: 15px; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); line-height: 1; padding: 5px; border-radius: 50%; transition: background 0.2s;}
    .modal-close:hover { background: var(--bg-body); color: var(--text-main); }
    .modal-box h2 { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 5px; font-weight: 800; }
    .input-group { margin-bottom: 15px; text-align: left;}
    .input-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--text-secondary); }
    .input-control { width: 100%; padding: 12px; border: 1px solid var(--border-medium); border-radius: var(--radius-sm); font-size: 1rem; outline: none; transition: border-color 0.2s; }
    .input-control:focus { border-color: var(--brand-accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
    .btn-submit { width: 100%; background: var(--success-green); color: white; padding: 14px; border-radius: var(--radius-sm); font-weight: bold; font-size: 1rem; cursor: pointer; margin-top: 10px; transition: background 0.2s; border: none;}
    .btn-submit:hover { background: #059669; }
    .loc-header { padding: 20px 25px; border-bottom: 1px solid var(--border-light); background: #F8FAFC; }
    .loc-search { width: 100%; padding: 12px; margin-top: 10px; border: 1px solid var(--border-medium); border-radius: 6px; outline: none; font-size: 1rem; transition: border-color 0.2s;}
    .loc-search:focus { border-color: var(--brand-accent); }
    .loc-grid { padding: 20px 25px; overflow-y: auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
    .loc-btn { border: 1px solid var(--border-light); padding: 10px; text-align: center; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: var(--text-main); transition: all 0.2s; display: block;}
    .loc-btn:hover { border-color: var(--brand-accent); color: var(--brand-accent); background: #EFF6FF; transform: translateY(-2px);}
    .alert-msg { background: var(--success-bg); color: var(--success-green); text-align: center; padding: 15px; font-weight: 700; position: sticky; top: 0; z-index: 2001; }
