/**
 * MapsHunt - Authentication & Dashboard Styles
 * Modern, scalable design system
 */

/* ========================================
   AUTHENTICATION PAGES (Login/Register)
   ======================================== */

.llh-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.llh-auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Left Side - Branding */
.llh-auth-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.llh-auth-branding {
    text-align: center;
}

.llh-logo-circle {
    display: inline-flex;
    margin-bottom: 20px;
}

.llh-auth-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.llh-auth-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.llh-auth-features {
    margin: 40px 0;
}

.llh-feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.llh-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.llh-feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.llh-feature-item p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.llh-auth-testimonial {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    position: relative;
}

.llh-quote-icon {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.llh-auth-testimonial p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.llh-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.llh-testimonial-author strong {
    font-size: 14px;
}

.llh-testimonial-author span {
    font-size: 13px;
    opacity: 0.7;
}

/* Right Side - Form */
.llh-auth-right {
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.llh-auth-form-container {
    width: 100%;
    max-width: 420px;
}

.llh-form-header {
    margin-bottom: 30px;
}

.llh-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px 0;
}

.llh-form-header p {
    font-size: 15px;
    color: #718096;
    margin: 0;
}

/* Form Styles */
.llh-auth-form {
    margin-bottom: 25px;
}

.llh-form-group {
    margin-bottom: 20px;
}

.llh-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.llh-input-wrapper {
    position: relative;
}

.llh-input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    font-size: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.llh-input-wrapper input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.llh-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
}

.llh-input-check {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #48bb78;
}

.llh-password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.llh-password-toggle:hover {
    color: #667eea;
}

/* Alerts */
.llh-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.llh-alert svg {
    flex-shrink: 0;
}

.llh-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.llh-alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Form Row */
.llh-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Checkbox */
.llh-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
}

.llh-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.llh-checkbox-large {
    align-items: flex-start;
    line-height: 1.5;
}

.llh-checkbox-large input[type="checkbox"] {
    margin-top: 2px;
}

/* Links */
.llh-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.llh-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

.llh-link-bold {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.llh-link-bold:hover {
    color: #5568d3;
}

/* Buttons */
.llh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.llh-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.llh-btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.llh-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.llh-btn-block {
    width: 100%;
}

.llh-btn-outline {
    background: white;
    border: 2px solid #e2e8f0;
    color: #2d3748;
}

.llh-btn-outline:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.llh-btn-social {
    width: 100%;
    justify-content: center;
}

/* Divider */
.llh-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #a0aec0;
    font-size: 13px;
}

.llh-divider::before,
.llh-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.llh-divider span {
    padding: 0 15px;
}

/* Social Login */
.llh-social-login {
    margin-bottom: 25px;
}

/* Footer */
.llh-auth-footer {
    text-align: center;
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Pricing Highlight (Register Page) */
.llh-pricing-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
}

.llh-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.llh-pricing-highlight h3 {
    font-size: 20px;
    margin: 0 0 8px 0;
}

.llh-pricing-highlight > p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 20px 0;
}

.llh-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.llh-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.llh-feature-list svg {
    flex-shrink: 0;
}

.llh-upgrade-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
}

/* Trust Badges */
.llh-trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.llh-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.9;
}

/* Password Strength */
.llh-password-strength {
    margin-top: 10px;
}

.llh-strength-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.llh-strength-fill {
    height: 100%;
    transition: width 0.3s, background 0.3s;
}

.llh-strength-fill.strength-1 {
    background: #f56565;
}

.llh-strength-fill.strength-2 {
    background: #ed8936;
}

.llh-strength-fill.strength-3 {
    background: #ecc94b;
}

.llh-strength-fill.strength-4 {
    background: #48bb78;
}

.llh-strength-text {
    font-size: 12px;
    color: #718096;
    margin: 0;
}

/* Field Hints */
.llh-field-hint {
    font-size: 12px;
    color: #718096;
    margin: 6px 0 0 0;
}

.llh-field-error {
    color: #e53e3e;
}

.llh-form-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #718096;
    margin-top: 15px;
    padding: 12px;
    background: #f7fafc;
    border-radius: 8px;
}

.llh-form-note svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Spinner */
.llh-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   DASHBOARD
   ======================================== */

.llh-dashboard {
    display: flex;
    min-height: 100vh;
    background: #f7fafc;
}

/* Sidebar */
.llh-sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    transition: transform 0.3s;
}

.llh-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.llh-logo-sm {
    display: flex;
}

.llh-sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 4px;
}

.llh-sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.llh-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.llh-sidebar-nav a:hover {
    background: #f7fafc;
    color: #2d3748;
}

.llh-sidebar-nav a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.llh-sidebar-nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: white;
}

.llh-badge {
    margin-left: auto;
    background: #edf2f7;
    color: #4a5568;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.llh-sidebar-nav a.active .llh-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.llh-nav-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 15px 20px;
}

.llh-sidebar-footer {
    border-top: 1px solid #e2e8f0;
    padding: 15px;
}

.llh-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    background: #f7fafc;
    position: relative;
}

.llh-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.llh-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.llh-user-info {
    flex: 1;
    min-width: 0;
}

.llh-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.llh-user-email {
    font-size: 12px;
    color: #718096;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.llh-user-menu-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #a0aec0;
    transition: color 0.2s;
}

.llh-user-menu-btn:hover {
    color: #4a5568;
}

.llh-dropdown {
    position: absolute;
    bottom: 100%;
    left: 10px;
    right: 10px;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
}

.llh-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.llh-dropdown a:hover {
    background: #f7fafc;
}

.llh-dropdown-divider {
    height: 1px;
    background: #e2e8f0;
}

/* Main Content */
.llh-main-content {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
}

.llh-topbar {
    height: 70px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.llh-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #4a5568;
    cursor: pointer;
    padding: 8px;
}

.llh-topbar-title {
    flex: 1;
}

.llh-topbar-title h1 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.llh-topbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.llh-tier-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

.llh-tier-badge.tier-free {
    background: #e6fffa;
    color: #234e52;
}

.llh-tier-badge.tier-premium {
    background: #fef5e7;
    color: #78350f;
}

.llh-tier-badge.tier-business {
    background: #ede9fe;
    color: #5b21b6;
}

.llh-notification-btn {
    position: relative;
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s;
}

.llh-notification-btn:hover {
    color: #2d3748;
}

.llh-notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #f56565;
    border: 2px solid white;
    border-radius: 50%;
}

.llh-mobile-user {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.llh-mobile-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Area */
.llh-content {
    flex: 1;
    padding: 30px;
}

.llh-view-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Welcome Banner */
.llh-welcome-banner {
    margin-bottom: 30px;
}

.llh-alert-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.llh-welcome-banner h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.llh-welcome-banner p {
    font-size: 14px;
    margin: 0;
}

.llh-welcome-banner button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.llh-welcome-banner button:hover {
    opacity: 1;
}

/* Stats Grid */
.llh-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.llh-stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 20px;
}

.llh-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.llh-stat-primary .llh-stat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.llh-stat-success .llh-stat-icon {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.llh-stat-warning .llh-stat-icon {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: white;
}

.llh-stat-info .llh-stat-icon {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
}

.llh-stat-content {
    flex: 1;
}

.llh-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.llh-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
    margin-bottom: 8px;
}

.llh-stat-max {
    font-size: 20px;
    color: #a0aec0;
    font-weight: 500;
}

.llh-stat-progress {
    height: 6px;
    background: #f7fafc;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 12px;
}

.llh-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: width 0.3s;
}

.llh-stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.llh-stat-up {
    color: #48bb78;
}

.llh-stat-neutral {
    color: #718096;
}

/* Grid Layouts */
.llh-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.llh-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

/* Cards */
.llh-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.llh-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.llh-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.llh-link-sm {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.llh-link-sm:hover {
    color: #5568d3;
}

.llh-card-body {
    padding: 24px;
}

.llh-card-search .llh-card-body {
    padding: 40px;
}

/* Quick Actions */
.llh-quick-actions {
    display: grid;
    gap: 12px;
}

.llh-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.llh-action-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.llh-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.llh-action-secondary {
    background: #f7fafc;
    color: #2d3748;
}

.llh-action-secondary:hover {
    background: #edf2f7;
}

.llh-action-outline {
    background: white;
    border: 2px solid #e2e8f0;
    color: #2d3748;
}

.llh-action-outline:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

/* Activity List */
.llh-activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.llh-activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.llh-activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.llh-activity-lead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.llh-activity-content {
    flex: 1;
}

.llh-activity-title {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2px;
}

.llh-activity-meta {
    font-size: 12px;
    color: #a0aec0;
}

/* Empty State */
.llh-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #a0aec0;
}

.llh-empty-sm {
    padding: 40px 20px;
}

.llh-empty-state svg {
    margin: 0 auto 20px;
}

.llh-empty-state p {
    font-size: 15px;
    margin: 0;
}

/* Upgrade CTA */
.llh-upgrade-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: white;
    margin-top: 30px;
}

.llh-upgrade-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.llh-upgrade-icon {
    flex-shrink: 0;
}

.llh-upgrade-cta h3 {
    font-size: 20px;
    margin: 0 0 6px 0;
}

.llh-upgrade-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.llh-upgrade-cta .llh-btn-primary {
    background: white;
    color: #667eea;
}

.llh-upgrade-cta .llh-btn-primary:hover {
    background: #f7fafc;
}

/* Form Styles (Search) */
.llh-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.llh-form-grid .llh-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.llh-form-grid .llh-form-group input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.llh-form-grid .llh-form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.llh-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* Results List */
.llh-results-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.llh-result-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.llh-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.llh-result-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.llh-result-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #f6ad55;
}

.llh-result-address {
    font-size: 14px;
    color: #718096;
    margin: 0 0 12px 0;
}

.llh-result-contacts {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #4a5568;
}

.llh-result-contacts span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .llh-sidebar {
        transform: translateX(-100%);
    }

    .llh-sidebar.open {
        transform: translateX(0);
    }

    .llh-sidebar-close {
        display: block;
    }

    .llh-main-content {
        margin-left: 0;
    }

    .llh-menu-btn {
        display: block;
    }

    .llh-topbar {
        padding: 0 20px;
    }

    .llh-content {
        padding: 20px;
    }

    .llh-mobile-user {
        display: block;
    }

    .llh-grid-2 {
        grid-template-columns: 1fr;
    }

    .llh-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .llh-auth-container {
        grid-template-columns: 1fr;
    }

    .llh-auth-left {
        display: none;
    }

    .llh-auth-right {
        padding: 40px 30px;
    }

    .llh-stats-grid {
        grid-template-columns: 1fr;
    }

    .llh-stat-card {
        flex-direction: row;
    }

    .llh-upgrade-cta {
        flex-direction: column;
        text-align: center;
    }

    .llh-upgrade-content {
        flex-direction: column;
        text-align: center;
    }

    .llh-topbar-title h1 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .llh-auth-wrapper {
        padding: 10px;
    }

    .llh-auth-right {
        padding: 30px 20px;
    }

    .llh-content {
        padding: 15px;
    }

    .llh-card-body {
        padding: 20px;
    }

    .llh-card-search .llh-card-body {
        padding: 24px;
    }
}
