.contact-web-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 80px 20px;
    animation: fadeIn 0.5s ease-out;
}

.contact-web-container header {
    text-align: center;
    margin-bottom: 50px;
}


.issue-selector h3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.issue-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s;
}

.issue-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.issue-card[data-issue="payment"]:hover::before {
    background: #3b82f6;
}

.issue-card[data-issue="license"]:hover::before {
    background: #8b5cf6;
}

.issue-card[data-issue="bug"]:hover::before {
    background: #ef4444;
}

.issue-card[data-issue="other"]:hover::before {
    background: #10b981;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--bg);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
    color: var(--text-muted);
}

.issue-card:hover .icon-wrapper {
    color: white;
}

.issue-card[data-issue="payment"]:hover .icon-wrapper {
    background: #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

.issue-card[data-issue="license"]:hover .icon-wrapper {
    background: #8b5cf6;
    box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.4);
}

.issue-card[data-issue="bug"]:hover .icon-wrapper {
    background: #ef4444;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.4);
}

.issue-card[data-issue="other"]:hover .icon-wrapper {
    background: #10b981;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.issue-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s;
}

.issue-card:hover h4 {
    color: var(--primary);
}

.issue-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 10px;
}

#form-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

#form-section {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(-4px);
}

.btn-back i {
    width: 18px;
    height: 18px;
}


h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    background: var(--bg);
    transition: all 0.2s;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#success-msg {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

#success-msg h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

#success-msg p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

#success-msg button {
    padding: 12px 24px;
    background: var(--text);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    #form-section {
        padding: 25px;
    }
}