/* ======================================
   CONTACT SECTION - DESIGN 2 STYLING
   Test sayfası kartları + orijinal düzen
   ====================================== */

/* Başlık ile içerik arası boşluk */
.contact .section-header {
    margin-bottom: 2.5rem;
}

/* Contact Method Cards - Test Page Purple Style */
.contact .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact .contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact .contact-method:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(5px);
}

.contact .method-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact .contact-method:hover .method-icon {
    transform: scale(1.08);
}

/* Discord variant */
.contact .contact-method.discord .method-icon {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.contact .method-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}

/* Form wrapper - koyu arka plan */
.contact .contact-form-wrapper {
    background: rgba(20, 20, 35, 0.95) !important;
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 20px;
    padding: 2rem;
}

/* Gradient border'ı kaldır */
.contact .contact-form-wrapper::before {
    display: none !important;
}

/* Form h4 başlık */
.contact .contact-form-wrapper h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #fff;
}

/* Form inputs */
.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact .contact-form .form-group input:focus,
.contact .contact-form .form-group textarea:focus {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.05);
}

/* Submit Button */
.contact .contact-form .btn-primary,
.contact .contact-form button[type="submit"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact .contact-form .btn-primary:hover,
.contact .contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
}