/* Contact Styles */

.contact-container {
    height: 100%;
    width: 100%;
    background: var(--content-bg);
    color: var(--content-text);
    font-family: 'Inter', sans-serif;
    border-radius: 0 0 10px 10px;
    overflow-y: auto;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.contact-content {
    width: 100%;
    max-width: 500px;
}

.contact-header {
    margin-bottom: 32px;
    text-align: center;
}

.contact-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.contact-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.contact-link-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
    color: white;
}

.contact-link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.contact-link-left {
    display: flex;
    flex-direction: column;
}

.contact-link-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-link-value {
    font-size: 15px;
    font-weight: 500;
}

.contact-link-action {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-link-action:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Contact Form */
.contact-form-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    color: #f87171;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.form-submit {
    width: 100%;
    background: rgba(0, 88, 208, 0.8);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit:hover {
    background: rgba(0, 88, 208, 1);
}

.form-feedback {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #4ade80;
    display: none;
}

@media (max-width: 600px) {
    .contact-container {
        padding: 16px;
    }
}
