/* General Styles */
:root {
    --primary-color: #D21531;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #D21531;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    padding: 100px 0;
    margin-bottom: 30px;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Features Section */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
}

.card i {
    color: var(--primary-color);
}

/* Pricing Section */
#pricing .card {
    border: 1px solid #dee2e6;
}

#pricing .card-header {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

/* Alerts */
.alert {
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    padding: 1rem;
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Dashboard Styles */
.dashboard-stats {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.dashboard-stats i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Support Ticket Styles */
.ticket-priority-high {
    color: var(--danger-color);
}

.ticket-priority-medium {
    color: var(--warning-color);
}

.ticket-priority-low {
    color: var(--info-color);
}

/* License Status Indicators */
.license-active {
    color: var(--success-color);
}

.license-expired {
    color: var(--danger-color);
}

.license-pending {
    color: var(--warning-color);
} 