/* Support Section */
.support-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Support Image */
.support-image-wrapper {
    position: relative;
}

.support-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.support-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
}

.support-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4141A1;
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Support Content */
.support-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.support-header {
    margin-bottom: 0;
}

.support-header .section-heading {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.support-header .section-heading .highlight {
    background: linear-gradient(to right, #4141A1, #9B9BCD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-header .section-subheading {
    font-size: 1.125rem; /* 18px */
    color: #6b7280;
    line-height: 1.6;
}

/* Support Features */
.support-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .support-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.support-feature-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.support-feature-card:hover {
    border-color: rgba(65, 65, 161, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.support-feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 16px;
}

.support-feature-card .feature-icon svg {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.icon-blue-cyan {
    background: linear-gradient(to bottom right, #4141A1, #6565b8);
}

.icon-cyan-blue {
    background: linear-gradient(to bottom right, #6565b8, #4141A1);
}

.icon-indigo-purple {
    background: linear-gradient(to bottom right, #2d2d7a, #4141A1);
}

.icon-purple-blue {
    background: linear-gradient(to bottom right, #23236a, #4141A1);
}

.support-feature-card .feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.support-feature-card .feature-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Contact Button */
.btn-contact-support {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #4141A1;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(65, 65, 161, 0.5);
    align-self: flex-start;
}

.btn-contact-support:hover {
    background-color: #2d2d7a;
    box-shadow: 0 0 25px rgba(65, 65, 161, 0.6);
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .support-badge {
        top: 16px;
        right: 16px;
    }
    
    .support-header .section-heading {
        font-size: 2rem;
    }
}
