/* ---------------------------------------------------
   BASE
--------------------------------------------------- */
#support {
    padding: 120px 0;
}

.support-wrapper {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

#support h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.subtitle {
    opacity: 0.8;
    margin-bottom: 40px;
}

/* ---------------------------------------------------
   SUPPORT CARDS
--------------------------------------------------- */
.support-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    margin-bottom: 30px;
    text-align: left;
    animation: fadeIn 0.4s ease;
}

.support-card h2 {
    margin-bottom: 12px;
}

.support-card p {
    opacity: 0.85;
    margin-bottom: 15px;
}

.support-card ul {
    padding-left: 20px;
    opacity: 0.85;
}

.support-card li {
    margin-bottom: 6px;
}

/* Email style */
.email {
    font-weight: 600;
    color: #7ab8ff;
    text-shadow: 0 0 8px rgba(122, 184, 255, 0.6);
}

/* Full-width button */
.btn-primary.full {
    width: 100%;
    text-align: center;
}

/* ---------------------------------------------------
   ANIMATIONS
--------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
