/* Support Page Specific Styles */

/* Support Header */
.support-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.support-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.support-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Support Options */
.support-options {
    margin-bottom: 3rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Grid for enterprise layout - show enterprise card in bottom row */
.options-grid {
    grid-template-areas: 
        "support feedback"
        "bug feature"
        "enterprise enterprise";
}

.option-card[data-type="support"] { grid-area: support; }
.option-card[data-type="feedback"] { grid-area: feedback; }
.option-card[data-type="bug_report"] { grid-area: bug; }
.option-card[data-type="feature_request"] { grid-area: feature; }
.option-card[data-type="enterprise"] { grid-area: enterprise; }

.option-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-color: #3b82f6;
}

.option-card.selected {
    border-color: #3b82f6;
    background: #f8faff;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.option-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.option-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Enterprise Card Special Styling */
.option-card-enterprise {
    background: linear-gradient(135deg, #00356B 0%, #004080 100%);
    color: white;
    border-color: #00356B;
    position: relative;
    overflow: hidden;
}

.option-card-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.option-card-enterprise .option-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.option-card-enterprise h3 {
    color: white;
    position: relative;
    z-index: 1;
}

.option-card-enterprise p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.option-card-enterprise:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 53, 107, 0.3);
    border-color: #004080;
}

.option-card-enterprise.selected {
    background: linear-gradient(135deg, #004080 0%, #0056b3 100%);
    border-color: #004080;
}

/* Support Form */
.support-form-section {
    margin-bottom: 3rem;
}

.form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    max-width: 800px;
    margin: 0 auto;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Success Message */
.success-message {
    margin-bottom: 3rem;
}

.success-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #dcfce7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 0.75rem;
}

.success-content p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-header {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .support-header h1 {
        font-size: 2rem;
    }
    
    .support-header p {
        font-size: 1rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .success-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

/* Animation for smooth transitions */
.support-form-section,
.success-message {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .options-grid {
        grid-template-areas: 
            "support"
            "feedback"
            "bug"
            "feature"
            "enterprise";
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .option-card {
        padding: 1.5rem;
    }
    
    .option-card h3 {
        font-size: 1.125rem;
    }
    
    .option-card p {
        font-size: 0.9rem;
    }
    
    .option-icon {
        font-size: 2.5rem;
    }
} 