:root {
  --primary: #5A2A9B;
  --secondary: #c69fff;
  --accent: #ff00e1;
  --text: #333;
  --light-text: #777;
  --bg: #f9f9f9;
  --white: #ffffff;
  --dark-purple: #3a1a6a;
}

/* Task Type Selection */
.task-type-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.task-type-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.task-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.task-type-card.active {
    border-color: var(--primary);
    background: rgba(90, 42, 155, 0.05);
}

.task-type-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(90, 42, 155, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 20px;
}

.task-type-title {
    font-weight: bold;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 5px;
}

.task-type-desc {
    color: var(--light-text);
    font-size: 13px;
    line-height: 1.5;
}

/* Task Forms */
.task-form-section {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.task-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 42, 155, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Platform Selection */
.platform-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-checkbox,
.platform-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.platform-checkbox input,
.platform-radio input {
    display: none;
}

.platform-checkbox .platform-icon,
.platform-radio .platform-icon {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: all 0.2s;
}

.platform-checkbox input:checked + .platform-icon,
.platform-radio input:checked + .platform-icon {
    background: rgba(90, 42, 155, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.platform-checkbox .platform-icon i,
.platform-radio .platform-icon i {
    font-size: 16px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.form-actions button {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.secondary-btn {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Pricing Section */
.pricing-card {
    background: var(--white);
    margin-top: 20px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(90, 42, 155, 0.1);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary);
}

.pricing-header i {
    font-size: 20px;
}

.pricing-header h3 {
    font-size: 16px;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pricing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-type {
    font-weight: 500;
    font-size: 14px;
}

.pricing-range {
    font-weight: bold;
    color: var(--primary);
    font-size: 14px;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(90, 42, 155, 0.05);
    border-radius: 8px;
    color: var(--primary);
    font-size: 13px;
}

.pricing-note i {
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .task-type-cards {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .platform-selection {
        flex-direction: column;
    }
    
    .platform-checkbox .platform-icon,
    .platform-radio .platform-icon {
        width: 100%;
    }
}