/* HERO */
.support-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
}

.support-logo {
    width: 80px;
    margin-bottom: 15px;
}

.subtitle {
    opacity: 0.85;
}

/* Layout */
.support-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 15%;
    align-items: center;
}

/* Form */
.support-form {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 440px;
}

.support-form h3 {
    margin-bottom: 16px;
}

.support-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.support-form input,
.support-form select,
.support-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 13px;
}

.support-form textarea,
.support-form button {
    grid-column: 1 / -1;
}

.support-form button {
    background: #2563eb;
    color: white;
    padding: 11px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

/* Visual */
.support-visual {
    text-align: center;
}

/* Cards */
.support-section {
    padding: 50px 15%;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.support-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
}

.support-card h3 {
    margin-bottom: 15px;
}

.support-card i {
    color: #2563eb;
}

.support-points {
    padding-left: 18px;
}

/* Animation (reuse from contact) */
.pulse-circle {
    width: 140px;
    height: 140px;
    background: rgba(37,99,235,0.15);
    border-radius: 50%;
    margin: auto;
    position: relative;
}

.pulse-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,99,235,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile */
@media (max-width: 768px) {
    .support-layout {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .support-form {
        max-width: 100%;
    }

    .support-form form {
        grid-template-columns: 1fr;
    }
}
