/* ==========================================================================
   Support Page Specific Styles (support.html)
   ========================================================================== */

/* Main Content */
.support-section {
    background: var(--bg-light);
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.support-intro h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Captcha Container Styles */
.captcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 78px;
    padding: 1rem;
    background: #f9f9f9;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s;
}

.captcha-placeholder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    font-size: 0.95rem;
}

.captcha-placeholder svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.15);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}

.support-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    text-decoration: none;
}

.support-card a.support-icon:hover {
    text-decoration: none;
}

.support-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.support-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.support-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        padding: 2rem;
    }
}

