/* =========================
   Feature Request Form
   ========================= */
.feature-request-wrapper {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.feature-request-container {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-request-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
}
.header-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { transform: scale(1);}
    50% { transform: scale(1.05);}
}
h1 {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    color: transparent;
}
.subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Guidelines Box */
.guidelines-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 14px;
}
.guidelines-box h3 {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

input, select, textarea {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--border-secondary);
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: var(--bg-primary);
    color: var(--text-primary);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

textarea {
    resize: none;
    min-height: 120px;
    line-height: 1.6;
}

.char-counter {
    text-align: right;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Submit button */
button[type="submit"] {
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--gradient-button);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    gap: 10px;
}
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
button[type="submit"].loading i {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back link */
.back-link {
    text-align: center;
    margin-top: 20px;
}
.back-link a {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}
.back-link a:hover {
    color: var(--primary-color);
    background: var(--hover-bg);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.5s;
    z-index: 1000;
}
.success-message.show {
    transform: translateX(0);
}

/* Scroll-to-top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}
.scroll-to-top.show {
    display: block;
}
.scroll-to-top:hover {
    background: var(--secondary-color);
}

