/* Contact Us — Assist Section */
.contact-assist-section {
    background: var(--white);
}

.contact-assist-section .assist-card {
    background: var(--light-purple-shade);
    border: 1px solid var(--border-indigo);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-assist-section .assist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(78, 49, 173, 0.12);
}

.contact-assist-section .assist-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-purple);
    box-shadow: 0 4px 12px rgba(78, 49, 173, 0.08);
}

.contact-assist-section .assist-card-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.contact-assist-section .assist-icon-lead {
    width: 52px;
    height: 52px;
    background: var(--primary-purple);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(78, 49, 173, 0.25);
}

.contact-assist-section .assist-icon-lead svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}

.contact-assist-section .assist-icon-corner {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.contact-assist-section .assist-card-title {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.35rem;
    padding-right: 60px;
}

.contact-assist-section .assist-card-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-assist-section .assist-list li {
    color: var(--text-body);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-assist-section .assist-list li svg {
    color: var(--primary-purple);
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.contact-assist-section .assist-email-line {
    color: var(--text-main);
    font-size: 0.98rem;
}

.contact-assist-section .assist-email-line strong {
    color: var(--text-main);
    font-weight: 700;
}

.contact-assist-section .assist-email-line a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-assist-section .assist-email-line a:hover {
    color: var(--primary-blue);
}

.contact-assist-section .btn-assist {
    display: inline-block;
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-assist-section .btn-assist:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(78, 49, 173, 0.25);
}

@media (max-width: 575.98px) {
    .contact-assist-section .assist-card {
        padding: 1.5rem 1.25rem;
    }
    .contact-assist-section .assist-card-title {
        font-size: 1.2rem;
        padding-right: 52px;
    }
}

/* Contact Us — Top-Rated Hosting Support Section */
.hosting-support-section {
    background: var(--white);
}

.hosting-support-section .hosting-support-img {
    max-width: 100%;
    height: auto;
}

.hosting-support-section .support-info-item {
    padding: 0.5rem 0;
}

.hosting-support-section .support-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--primary-purple);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(78, 49, 173, 0.22);
}

.hosting-support-section .support-info-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.hosting-support-section .support-info-title {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.hosting-support-section .support-info-text {
    color: var(--text-body);
    font-size: 0.98rem;
    line-height: 1.6;
}

.hosting-support-section .support-info-text a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hosting-support-section .support-info-text a:hover {
    color: var(--primary-blue);
}

.hosting-support-section .support-info-divider {
    border: 0;
    border-top: 1px solid var(--border-indigo);
    margin: 1.25rem 0;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .hosting-support-section .hosting-support-img {
        max-width: 70%;
    }
}

@media (max-width: 575.98px) {
    .hosting-support-section .support-info-icon {
        width: 48px;
        height: 48px;
    }
    .hosting-support-section .support-info-icon svg {
        width: 20px;
        height: 20px;
    }
    .hosting-support-section .support-info-title {
        font-size: 1.1rem;
    }
}
