/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-card {
    background: rgba(30, 20, 40, 0.7);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.discord-icon {
    background-image: url('../img/discord-icon.png');
    /* Fallback if image not available */
    background-color: #5865F2;
    border-radius: 50%;
    position: relative;
}

.discord-icon::before {
    content: "D";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 24px;
    color: white;
}

.email-icon {
    background-image: url('../img/email-icon.png');
    /* Fallback */
    background-color: #a370f7;
    border-radius: 50%;
    position: relative;
}

.email-icon::before {
    content: "@";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 24px;
    color: white;
}

.forum-icon {
    background-image: url('../img/forum-icon.png');
    /* Fallback */
    background-color: #ff4081;
    border-radius: 50%;
    position: relative;
}

.forum-icon::before {
    content: "F";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 24px;
    color: white;
}

.contact-card h2 {
    margin: 15px 0 10px;
    color: #d4d4f8;
    border-bottom: none;
}

.contact-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    min-height: 60px;
}

.contact-card .btn {
    width: 100%;
}

/* Contact Form */
.contact-form-container {
    background: rgba(20, 20, 30, 0.5);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d4d4f8;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #333;
    background: rgba(30, 30, 40, 0.8);
    color: #fff;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a370f7;
    box-shadow: 0 0 8px rgba(163, 112, 247, 0.5);
}

.form-group button {
    margin-top: 10px;
    padding: 12px 20px;
    width: auto;
    justify-self: center;
}

/* FAQ Link Section */
.contact-faq {
    background: rgba(30, 20, 40, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.contact-faq a {
    color: #a370f7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-faq a:hover {
    color: #c69aff;
    text-decoration: underline;
}

/* Staff Hours */
.staff-hours {
    margin-top: 15px;
    margin-bottom: 25px;
}

.hours-table {
    margin: 15px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #333;
}

.response-time {
    font-style: italic;
    font-size: 0.9rem;
    color: #a370f7;
    text-align: center;
    margin-top: 15px;
}

/* Report List */
.report-list {
    margin-left: 20px;
    margin-top: 10px;
    line-height: 1.6;
}

.report-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.report-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #a370f7;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .contact-card p {
        min-height: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}