.container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    margin: 0 auto;
}

.ticket-section {
    flex: 3;
    min-width: 300px;
}

.info-section {
    flex: 1;
    min-width: 280px;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-body {
    padding: 25px;
}

.form-group {
    width: 40%;
    display: inline-grid;
    margin-bottom: 22px;
    margin-right: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

select, input, textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    padding: 10px !important;
}

select:focus, input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
    background-color: white;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    border: 2px dashed var(--primary);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    background-color: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--primary);
    background-color: #f5f8ff;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    cursor: pointer;
}

.file-upload-label i {
    font-size: 2.5rem;
    color: var(--primary);
}

#file-name {
    font-size: 0.9rem;
    margin-top: 10px;
    color: var(--dark);
    font-weight: 500;
}

#attachment {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 15px 15px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 90%;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.35);
}

.btn i {
    font-size: 1.2rem;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid var(--primary);
    transition: background-color 0.3s ease;
}

.info-card:last-child {
    border-bottom: none;
}

.info-card:hover {
    background-color: #f9fbfd;
}

.info-card i {
    font-size: 1.8rem;
    color: var(--primary);
    min-width: 40px;
    padding-top: 5px;
}

.info-content h4 {
    margin-bottom: 8px;
    color: var(--dark);
}

.info-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.support-hours {
    padding: 20px;
}

.support-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--dark);
}

.support-hours ul {
    list-style: none;
}

.support-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.support-hours li:last-child {
    border-bottom: none;
}

.support-hours li span:first-child {
    font-weight: 600;
    color: var(--dark);
}

.support-hours li span:last-child {
    color: var(--gray);
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .form-group{
        display: block;
        width: 90%;
    }
}