/* User Report System Styles */

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #001f3f 0%, #003d82 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(0,168,232,0.05)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.police-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.police-badge svg {
    width: 100%;
    height: 100%;
    fill: #00a8e8;
    filter: drop-shadow(0 4px 8px rgba(0, 168, 232, 0.3));
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #00a8e8;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Navigation */
.main-nav {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.nav-link {
    padding: 20px 30px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--police-primary);
    border-bottom-color: var(--police-accent);
    background: var(--police-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--police-primary);
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Report Form */
.report-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.report-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--police-accent);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.form-textarea {
    resize: vertical;
    font-family: inherit;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-area:hover {
    border-color: var(--police-accent);
    background: var(--police-light);
}

.file-upload-area svg {
    color: var(--police-accent);
    margin-bottom: 15px;
}

.file-upload-area p {
    color: var(--text-secondary);
    font-size: 14px;
}

.file-list {
    margin-top: 20px;
    text-align: left;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: 6px;
    margin-bottom: 8px;
}

.file-item-name {
    font-size: 14px;
    color: var(--text-primary);
}

.file-item-remove {
    background: none;
    border: none;
    color: var(--status-rejected);
    cursor: pointer;
    font-size: 18px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

/* Info Box */
.info-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--police-accent);
}

.info-box h3 {
    font-size: 18px;
    color: var(--police-primary);
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box li:before {
    content: "✓ ";
    color: var(--status-completed);
    font-weight: 700;
    margin-right: 8px;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.report-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--police-accent);
}

.report-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.report-card-id {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.report-card-body {
    margin-bottom: 15px;
}

.report-card-type {
    font-size: 16px;
    font-weight: 600;
    color: var(--police-primary);
    margin-bottom: 8px;
}

.report-card-suspect {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.report-card-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.report-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Statistics Dashboard */
.stats-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card-large {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-card-large .stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.stat-card-large h3 {
    font-size: 18px;
    color: var(--police-primary);
    font-weight: 700;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.stat-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon svg {
    width: 32px;
    height: 32px;
}

.stat-card-content {
    flex: 1;
}

.stat-card-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--police-primary);
    margin-bottom: 5px;
}

.stat-card-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Guide Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.guide-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.guide-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.guide-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 18px;
    color: var(--police-primary);
    margin-bottom: 15px;
    text-align: center;
}

.guide-card ul {
    list-style: none;
    padding: 0;
}

.guide-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.guide-card li:last-child {
    border-bottom: none;
}

.guide-card li:before {
    content: "• ";
    color: var(--police-accent);
    font-weight: 700;
    margin-right: 8px;
}

/* Footer */
.footer {
    background: var(--bg-sidebar);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--police-accent);
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .report-form-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }
}
