/* Support Section Redesign */

.support-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Process Steps Enhancements */
.support-process {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.process-step {
    flex: 1;
    min-width: 220px;
    background: var(--white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    /* Added for alignment */
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
    border-color: var(--primary-blue-light);
}

.step-number {
    position: absolute;
    top: -15px;
    background: var(--gradient-gold);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.2);
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-step h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.process-arrow {
    color: var(--primary-blue-light);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: slideRight 2s infinite;
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.8;
    }
}

/* Support Cards Improvements */
.support-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    gap: var(--spacing-2xl);
    max-width: 900px;
    /* Center breadth */
    margin: 0 auto;
}

.support-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.support-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    background: rgba(0, 123, 255, 0.05);
    /* Soft background */
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.support-card:hover i {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.2);
}

.support-card h3 {
    font-size: 1.7rem;
    /* Larger Title */
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.support-card p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 80%;
}

.support-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    background: var(--gradient-primary);
    font-weight: 600;
    text-decoration: none;
    height: 50px;
    /* Fixed height for consistency */
    padding: 0 30px;
    /* Horizontal padding only */
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
    font-size: 1rem;
    line-height: 1;
    /* Reset line-height */
    letter-spacing: -0.01em;
    position: relative;
    /* Ensure it stays contained if needed */
    overflow: hidden;
    /* Clip any potential overflow just in case */
}

/* Fix for unwanted expanding circle hover effect from global styles */
.support-link::before,
.support-link::after {
    display: none !important;
    content: none !important;
}

.support-link i {
    font-size: 1rem;
    /* Match text size exactly */
    margin-left: 5px;
    /* Slight gap */
    transition: transform 0.3s ease;
    /* Reset any inherited circle/background styles */
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    /* Back to block to handle transform better */
    line-height: 1 !important;
    /* Eliminate baseline space */
    position: relative;
    top: 11px;
    /* User requested specific alignment */
}

.support-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
    padding-right: var(--spacing-3xl);
    /* Slide effect */
}

/* Responsive */
@media (max-width: 768px) {
    .support-process {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-sm) 0;
    }

    .process-arrow i {
        animation: slideDown 2s infinite;
    }

    .support-cards {
        grid-template-columns: 1fr;
    }
}

@keyframes slideDown {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(5px);
        opacity: 0.8;
    }
}