/* Support page specific styles */
.support-hero {
    background: linear-gradient(135deg, #1a2a6c 0%, #43aff2 100%);
    color: white;
    padding: 80px 20px;
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.support-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
background: rgba(26, 42, 108, 0.75);
}

.support-section {
    padding: 3rem 0;
}

.section-title {
    font-weight: 700;
  margin-bottom: 2rem;
    color: #1a2a6c;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a2a6c, #43aff2);
    margin: 1rem 0 0;
    border-radius: 2px;
}

.text-center .section-title:after {
    margin: 1rem auto 0;
}

.support-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.support-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.support-card h3 {
    color: #1a2a6c;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.support-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.faq-section {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: #1a2a6c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
    padding-left: 1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #43aff2;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #5a6c7d;
    line-height: 1.8;
}

.faq-answer.show {
 max-height: 500px;
    padding: 1rem 0.5rem 0.5rem;
}

.contact-box {
    background: linear-gradient(135deg, #1a2a6c 0%, #43aff2 100%);
    color: white;
    border-radius: 0.75rem;
    padding: 2.5rem;
    text-align: center;
}

.contact-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info-item h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.contact-info-item a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.resource-link {
    display: flex;
  align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: #1a2a6c;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    color: #43aff2;
}

.resource-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #43aff2;
}

.resource-link span {
    flex: 1;
    font-weight: 500;
}

.resource-link .bi-chevron-right {
    font-size: 1rem;
  margin-right: 0;
    color: #6c757d;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.operational {
    background: #d4edda;
    color: #155724;
}

.status-badge.operational i {
    color: #28a745;
    margin-right: 0.5rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.status-indicator.green {
    background: #28a745;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.search-box {
    position: relative;
    margin-bottom: 3rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 3rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #43aff2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 175, 242, 0.1);
}

.search-box .search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.2rem;
}

.support-metrics {
    background: white;
border-radius: 0.75rem;
    padding: 2rem;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation classes */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive styles */
@media (max-width: 767px) {
    .support-hero {
     padding: 60px 20px;
    }

    .support-card {
        padding: 2rem;
    }

    .metric-value {
      font-size: 2rem;
    }
}
