/* Lost & Found Hub - Enhanced Filter Layout */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

/* Container Full Width */
.lfh-form-wrapper,
.lfh-list-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Form Styles - Full Width */
.lfh-form-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.lfh-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lfh-form-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a202c;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Alert Messages */
.lfh-alert {
    padding: 18px 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.lfh-alert-warning {
    background: rgba(254, 243, 199, 0.95);
    border: 2px solid #fcd34d;
    color: #92400e;
    box-shadow: 0 4px 12px rgba(252, 211, 77, 0.3);
}

.lfh-alert a {
    color: #1e40af;
    text-decoration: underline;
    font-weight: 700;
}

/* Success/Error Messages */
.lfh-message {
    padding: 20px 28px;
    border-radius: 16px;
    margin-bottom: 30px;
    font-weight: 600;
    display: none;
    font-size: 16px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lfh-message.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 2px solid #6ee7b7;
    box-shadow: 0 6px 20px rgba(110, 231, 183, 0.4);
}

.lfh-message.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 2px solid #fca5a5;
    box-shadow: 0 6px 20px rgba(252, 165, 165, 0.4);
}

/* Form Elements */
.lfh-form-group {
    margin-bottom: 28px;
}

.lfh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.lfh-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #ef4444;
}

.lfh-input,
.lfh-select,
.lfh-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    font-family: inherit;
}

.lfh-input:focus,
.lfh-select:focus,
.lfh-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.lfh-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Upload Area */
.lfh-upload-container {
    position: relative;
}

.lfh-file-input {
    display: none !important;
}

.lfh-upload-area {
    border: 3px dashed #cbd5e0;
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.lfh-upload-area:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: translateY(-4px);
}

.lfh-upload-area.drag-over {
    border-color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.upload-text {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin: 16px 0 10px;
}

.upload-hint {
    font-size: 14px;
    color: #9ca3af;
    margin: 6px 0;
}

.lfh-hint {
    font-size: 13px;
    color: #f59e0b;
    font-weight: 600;
    margin-top: 10px;
}

/* Image Preview */
.lfh-image-preview {
    position: relative;
    margin-top: 20px;
    text-align: center;
    display: none;
}

.lfh-image-preview img {
    max-width: 100%;
    max-height: 450px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lfh-remove-image {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ef4444;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lfh-remove-image:hover {
    background: #dc2626;
    transform: scale(1.15) rotate(90deg);
}

/* Contact Section */
.lfh-contact-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 32px;
    border-radius: 16px;
    margin-top: 40px;
    border: 2px solid #bfdbfe;
}

.lfh-section-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Submit Button */
.lfh-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lfh-submit-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.lfh-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.spinner {
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* List Wrapper - Enhanced Background */
.lfh-list-wrapper {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 0;
    position: relative;
}

.lfh-list-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.lfh-list-wrapper > * {
    position: relative;
    z-index: 1;
}

.lfh-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.lfh-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 70%);
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.lfh-hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.lfh-hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
}

.lfh-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Buttons */
.lfh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.lfh-btn svg {
    width: 20px;
    height: 20px;
}

.lfh-btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.lfh-btn-primary:hover {
    background: #f7fafc;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lfh-btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.lfh-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

/* Enhanced Search Section with Glassmorphism */
.lfh-search-section {
    max-width: 1400px;
    margin: -40px auto 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.lfh-search-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.lfh-search-input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 14px;
    font-size: 17px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.lfh-search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
}

.lfh-search-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.lfh-search-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

/* Enhanced Filters with Better Visual Hierarchy */
.lfh-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lfh-filter-select {
    padding: 16px 20px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.lfh-filter-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
}

/* Results Info with Better Typography */
.lfh-results-info {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 40px;
    color: #6b7280;
    font-size: 16px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lfh-results-info strong {
    color: #1f2937;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Posts Grid with Staggered Animation */
.lfh-posts-grid {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

/* Loading State Animation */
.lfh-posts-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

.lfh-posts-grid.loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border: 4px solid rgba(102, 126, 234, 0.2);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 100;
}

/* Enhanced Post Card with Glassmorphism */
.lfh-post-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: cardFadeIn 0.6s ease backwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lfh-post-card:nth-child(1) { animation-delay: 0.05s; }
.lfh-post-card:nth-child(2) { animation-delay: 0.1s; }
.lfh-post-card:nth-child(3) { animation-delay: 0.15s; }
.lfh-post-card:nth-child(4) { animation-delay: 0.2s; }
.lfh-post-card:nth-child(5) { animation-delay: 0.25s; }
.lfh-post-card:nth-child(6) { animation-delay: 0.3s; }

.lfh-post-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(102, 126, 234, 0.2),
        0 0 0 1px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.lfh-card-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(243, 244, 246, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.lfh-badge {
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-found {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid rgba(6, 95, 70, 0.2);
}

.badge-lost {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid rgba(153, 27, 27, 0.2);
}

.badge-completed {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    color: #22543d;
    border: 1px solid rgba(34, 84, 61, 0.2);
}

.lfh-points {
    color: #f59e0b;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lfh-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lfh-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lfh-post-card:hover .lfh-card-image::after {
    opacity: 1;
}

.lfh-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lfh-post-card:hover .lfh-card-image img {
    transform: scale(1.15);
}

.lfh-no-image {
    color: #cbd5e0;
    font-size: 48px;
}

.lfh-card-content {
    padding: 24px;
}

.lfh-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
    line-height: 1.4;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lfh-card-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.lfh-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

.lfh-card-description {
    font-size: 15px;
    color: #4b5563;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.9) 0%, rgba(243, 244, 246, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    line-height: 1.7;
    border: 1px solid rgba(229, 231, 235, 0.6);
}

.lfh-card-footer {
    padding: 20px 24px;
    border-top: 2px solid rgba(243, 244, 246, 0.8);
    background: rgba(249, 250, 251, 0.5);
}

.lfh-card-actions {
    display: flex;
    gap: 12px;
}

.lfh-btn-detail {
    flex: 1;
    background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
    color: white;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(128, 90, 213, 0.3);
}

.lfh-btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 90, 213, 0.5);
}

.lfh-btn-contact {
    flex: 1;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.lfh-btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.lfh-btn-complete {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.lfh-btn-complete:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
}

/* Modal Styles */
.lfh-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lfh-modal-close:hover {
    background: #dc2626;
    transform: scale(1.15) rotate(90deg);
}

.lfh-modal-body {
    padding: 50px;
}

/* No Results with Better Design */
.lfh-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    color: #9ca3af;
    animation: fadeIn 0.6s ease;
}

.lfh-no-results svg {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    opacity: 0.5;
}

/* Enhanced Pagination */
.lfh-pagination {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lfh-pagination a,
.lfh-pagination span {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 10px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lfh-pagination a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.lfh-pagination .current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lfh-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .lfh-form-container {
        padding: 32px;
    }
    
    .lfh-form-row {
        grid-template-columns: 1fr;
    }
    
    .lfh-hero {
        padding: 60px 24px;
    }
    
    .lfh-hero-title {
        font-size: 48px;
    }
    
    .lfh-posts-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .lfh-search-section {
        padding: 28px;
        margin: -30px 20px 30px;
    }
    
    .lfh-search-bar {
        flex-direction: column;
    }
    
    .lfh-filters {
        grid-template-columns: 1fr;
    }
    
    .lfh-results-info,
    .lfh-pagination {
        padding: 0 20px;
    }
    
    .lfh-modal-body {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .lfh-form-title {
        font-size: 32px;
    }
    
    .lfh-form-container {
        padding: 24px;
    }
    
    .lfh-hero-title {
        font-size: 36px;
    }
    
    .lfh-card-actions {
        flex-direction: column;
    }
}overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
}

.lfh-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 24px;
    max-width: 800px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.lfh-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.lfh-modal-