/* Pengaduan Page Styles */

/* Page Header (Copied from Informasi) */
.page-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: var(--midnight-blue);
  color: white;
  text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-desc {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Header Text Styles */
.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-desc {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Layout */
.pengaduan-section {
    padding: 4rem 0;
    min-height: 80vh; /* Ensure some height */
    position: relative;
    background-color: var(--bg-light);
}

.pengaduan-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 900px) {
    .pengaduan-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Styles */
.form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.form-header h2 {
    color: var(--midnight-blue);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--midnight-blue);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--royal-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* File Input Styling */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-light);
    transition: var(--transition-fast);
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--royal-blue);
    background-color: #f0f9ff;
}

.file-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--royal-blue);
}

.file-name-display {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--midnight-blue);
    font-weight: 600;
}

/* Sidebar Styles */
.contact-sidebar {
    position: sticky;
    top: 6rem; /* Adjust based on navbar height */
    height: fit-content;
}

.info-card {
    background: var(--midnight-blue);
    color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(21, 64, 106, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative circle overlay */
.info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 20px;
    height: 20px;
}

.contact-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Help Box */
.help-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.help-box h4 {
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.help-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
}
