/* === BASE RESET & VARIABLES === */
:root {
    --primary: #00f5d4;
    --primary-dark: #00d1b2;
    --secondary: #ff2a6d;
    --secondary-dark: #e0255f;
    --dark: #0a0a16;
    --darker: #05050e;
    --card: rgba(255, 255, 255, 0.04);
    --card-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.1);
    --text-light: #ffffff;
    --text-muted: #a0a0b0;
    --glow-primary: 0 0 20px rgba(0, 245, 212, 0.4);
    --glow-secondary: 0 0 20px rgba(255, 42, 109, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* === ANIMATED BACKGROUND === */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: glowFloat 15s ease-in-out infinite alternate;
}

.bg-glow-1 {
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.bg-glow-2 {
    background: var(--secondary);
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes glowFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 20px) scale(1.1); }
}

/* === NAVBAR === */
.navbar {
    background-color: rgba(10, 10, 22, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 998;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.mobile-menu-btn {
    background: transparent;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* === MAIN CONTAINER === */
.container {
    max-width: 1000px;
    width: 95%;
    margin: 2rem auto;
    padding-bottom: 4rem;
}

/* === APP HEADER === */
.app-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.header-badge {
    display: inline-block;
    background: var(--gradient-primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1rem;
}

.app-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.header-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--card);
    border-radius: 3px;
    margin-top: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    width: 20%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* === FORM STEPS === */
.form-step {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    display: none;
    transition: var(--transition);
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.step-indicator span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-indicator h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

/* === FORM LAYOUT === */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    padding-left: 0.2rem;
}

.input-group {
    position: relative;
    background-color: var(--card-hover);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: var(--transition);
}

.input-group:focus-within {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.input-group input, .input-group textarea {
    width: 100%;
    background: transparent;
    color: var(--text-light);
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    font-size: 1rem;
    border-radius: 1rem;
}

.textarea-group {
    padding-top: 0.5rem;
}

.textarea-group textarea {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    resize: vertical;
    min-height: 80px;
}

.input-group input::placeholder, .input-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.hint-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === ISSUE CARDS === */
.issue-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.issue-card {
    background-color: var(--card-hover);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.issue-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.issue-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.issue-card h4 i {
    color: var(--secondary);
}

/* === TERMS GROUP === */
.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
}

.terms-group input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    accent-color: var(--primary);
}

.terms-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === BUTTONS === */
.btn {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
}

.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.final-actions {
    justify-content: center;
    flex-wrap: wrap;
}

.btn-back {
    background-color: var(--card);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-back:hover {
    background-color: var(--card-hover);
    color: var(--text-light);
    border-color: var(--border);
}

.btn-next {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
}

.btn-next:hover {
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.btn-preview {
    background-color: var(--card);
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-preview:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
}

.btn-primary:hover {
    box-shadow: var(--glow-secondary);
    transform: translateY(-2px);
}

/* === SUBMIT NOTE === */
.submit-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.admin-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.admin-contact:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background-color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalPop 0.4s ease;
}

@keyframes modalPop {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.close-modal {
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    line-height: 1.8;
}

.modal-body h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 1.8rem;
}

.modal-body h3 {
    color: var(--secondary);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.modal-body p {
    color: var(--text-light);
    margin-left: 0.5rem;
}

.modal-body strong {
    color: var(--primary);
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.btn-close-modal {
    background-color: var(--card);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn
  
