/* ========================================
   SUPPORT PAGE - SINGLE SECTION COMPACT
   ======================================== */

.support-page-compact {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
}

.support-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side */
.support-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-title {
    margin-bottom: 1rem;
}

.support-title h1 {
    font-size: 2.5rem;
    margin: 0.8rem 0 0.5rem 0;
    line-height: 1.2;
}

.support-title p {
    color: #AAAAAA;
    font-size: 0.95rem;
}

/* Contact Methods - Small Cards */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
    transition: left 0.5s ease;
}

.contact-method-card:hover::before {
    left: 100%;
}

.contact-method-card:hover {
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.method-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 3px 10px rgba(255, 215, 0, 0.3));
}

.telegram-icon svg {
    color: #FFD700;
    filter: drop-shadow(0 3px 10px rgba(255, 215, 0, 0.4));
}

.method-info h4 {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 0.2rem;
}

.method-info p {
    font-size: 0.8rem;
    color: #999;
}

.btn-method {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-method:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: scale(1.05);
}

/* Right Side - Form */
.support-right {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 60px;
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 0.3rem;
}

.form-header p {
    color: #999;
    font-size: 0.85rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #CCCCCC;
    font-size: 0.85rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1.5px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .support-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .support-page-compact {
        padding-top: 120px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .support-title h1 {
        font-size: 2rem;
    }
    
    .contact-method-card {
        padding: 1rem;
        grid-template-columns: auto 1fr;
        gap: 0.8rem;
    }
    
    .btn-method {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .support-right {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
}

